/* ===================================
   E.F.R Test and Tag - Modern CSS
   =================================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #ff6600;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

/* ===================================
   Header Styles
   =================================== */

.site-header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.header-link {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size:20px;
}

.header-link:hover {
    color: var(--warning-color);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

.social-links a:hover {
    background: var(--secondary-color);
}

.header-main {
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 85px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
}

.hero-content {
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: #fff;
    font-size: 3rem;
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.5);
}

.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background: #e55a00;
}

.btn-light {
    background: #fff;
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--light-color);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
}

.cta-button {
    background: var(--secondary-color);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 5px;
}

.cta-button:hover {
    background: #e55a00;
}

/* ===================================
   Welcome Section
   =================================== */

.welcome-section {
    padding: 80px 0;
    background: var(--light-color);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.welcome-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.welcome-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Services Section
   =================================== */

.services-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.service-link:hover {
    color: var(--primary-color);
}

/* ===================================
   Services List Section
   =================================== */

.services-list-section {
    padding: 80px 0;
    background: var(--light-color);
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.services-list {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.services-list h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
}

.services-list ul {
    list-style: disc;
    padding-left: 20px;
}

.services-list ul li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.services-list.featured {
    background: var(--primary-color);
    color: #fff;
}

.services-list.featured h3 {
    color: #fff;
    border-bottom-color: #fff;
}

.services-list.featured p,
.services-list.featured ul li {
    color: #fff;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Page Header
   =================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 3rem;
}

.page-header p {
    font-size: 1.2rem;
}

/* ===================================
   Services Detail Page
   =================================== */

.services-detail-section {
    padding: 80px 0;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-detail-grid {
    display: grid;
    gap: 50px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px;
    background: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-detail-icon img {
    border-radius: 10px;
    width: 100%;
}

.service-detail-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-detail-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 15px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
}

/* Single column for cards without images */
.service-detail-card:not(:has(.service-detail-icon)) {
    grid-template-columns: 1fr;
}

.why-choose-section {
    padding: 80px 0;
    background: var(--light-color);
}

.why-choose-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ===================================
   Contact Page
   =================================== */

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
}

.contact-text h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-text p {
    margin-bottom: 5px;
}

.social-connect {
    margin-top: 40px;
}

.social-links-large {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links-large a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.social-links-large a:hover {
    background: var(--secondary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.service-areas-section {
    padding: 60px 0;
    background: var(--light-color);
    text-align: center;
}

.service-areas-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.area-item {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    font-weight: 600;
}

.areas-note {
    margin-top: 30px;
    font-style: italic;
}

/* ===================================
   Location Page
   =================================== */

.location-section {
    padding: 80px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.location-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-details {
    margin: 40px 0;
}

.location-detail-item {
    margin-bottom: 30px;
}

.location-detail-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.directions-info {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.directions-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.directions-info ul {
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.directions-info ul li {
    margin-bottom: 8px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.service-coverage-section {
    padding: 80px 0;
    background: var(--light-color);
}

.service-coverage-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-coverage-section > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.coverage-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.coverage-column ul {
    list-style: disc;
    padding-left: 20px;
}

.coverage-column ul li {
    margin-bottom: 10px;
}

.coverage-note {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: var(--shadow);
}

.coverage-note p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.why-local-section {
    padding: 80px 0;
}

.why-local-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ===================================
   FAQ Page
   =================================== */

.faq-section {
    padding: 80px 0;
}

.faq-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-intro h2 {
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item ul,
.faq-item ol {
    padding-left: 30px;
    margin: 15px 0;
}

.faq-item ul {
    list-style: disc;
}

.faq-item ol {
    list-style: decimal;
}

.faq-item li {
    margin-bottom: 8px;
}

.standards-section {
    padding: 80px 0;
    background: var(--light-color);
}

.standards-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.standards-content {
    display: grid;
    gap: 30px;
}

.standard-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.standard-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.standard-box ul {
    list-style: disc;
    padding-left: 20px;
}

.standard-box ul li {
    margin-bottom: 10px;
}

.standards-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.standards-table th,
.standards-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.standards-table th {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.standards-table tr:hover {
    background: var(--light-color);
}

/* ===================================
   Footer
   =================================== */

.site-footer {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-column p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-column address {
    font-style: normal;
}

.footer-column address p {
    margin-bottom: 15px;
}

.footer-column address a {
    color: #fff;
}

.footer-column address a:hover {
    color: var(--secondary-color);
}

.social-footer {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-footer a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

.social-footer a:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom a {
    color: #fff;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero {
        height: 450px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .welcome-grid,
    .contact-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
    }
    
    .service-detail-icon {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-top {
        font-size: 12px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .slider-nav {
        font-size: 2rem;
        padding: 5px 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .services-section,
    .welcome-section,
    .contact-section,
    .location-section,
    .faq-section {
        padding: 50px 0;
    }
    
    .section-header h2,
    .page-header h1 {
        font-size: 1.75rem;
    }
}

/* ===================================
   Utility Classes
   =================================== */

.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-30 { margin-top: 30px; }

/* Print Styles */
@media print {
    .site-header,
    .hero,
    .cta-section,
    .site-footer,
    .slider-nav,
    .mobile-menu-toggle {
        display: none;
    }
}


/* Contact Section - 2 Column Layout */
.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

/* Message Boxes */
.message-box {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 500;
    border-left: 4px solid;
}

.message-box.success {
    background-color: #d4edda;
    border-left-color: #28a745;
    color: #155724;
}

.message-box.error {
    background-color: #f8d7da;
    border-left-color: #dc3545;
    color: #721c24;
}

.message-box p {
    margin: 0;
}

.contact-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Column: Contact Info */
.contact-info-column {
    padding-right: 20px;
}

.contact-info-column h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #003366;
}

.contact-info-column > p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.info-block {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.info-block:last-of-type:not(.social-block) {
    border-bottom: none;
}

.info-block h3 {
    font-size: 16px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 10px;
}

.info-block p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.info-block a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.info-block a:hover {
    text-decoration: underline;
}

.social-block {
    border-bottom: none;
    padding-bottom: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #003366;
}

/* Right Column: Contact Form */
.contact-form-column {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form-column h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #003366;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: #003366;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-grid-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-column {
        padding-right: 0;
    }
    
    .contact-form-column {
        padding: 30px 20px;
    }
    
    .contact-info-column h2,
    .contact-form-column h2 {
        font-size: 24px;
    }
}
