* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #b8ccc8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background: #f5f0e8;
    padding: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.seal-image {
    width: 150px;
    height: 150px;
}

.logo-text h1 {
    font-size: 40px;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}

.tagline {
    font-size: 20px;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

.coming-soon-banner {
    background: #e8be5f;
    color: #000;
    padding: 15px 0;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 3px solid #d4a84d;
}

.coming-soon-link {
    color: #000;
    padding: 15px 0;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    text-decoration: underline;
    transition: all 0.3s;
    display: inline;
}

/* Navigation */
nav {
    background: #f5f0e8;
    border-top: 1px solid #e8e9ea;
    padding: 0;
    position: relative;
}

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

.nav-links {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 0;
    flex: 1;
}

.nav-links a {
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 18px 35px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.nav-links a:hover {
    background: #ebe4d8;
    color: #e89d95;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Carousel Section */
.carousel-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 80px;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

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

.carousel-content {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
    background: rgba(51, 51, 51, 0.75);
    color: #f5f0e8;
    padding: 30px 40px;
    max-width: 600px;
    backdrop-filter: blur(5px);
}

.carousel-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #e89d95;
}

.carousel-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.carousel-link {
    display: inline-block;
    color: #e89d95;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e89d95;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.carousel-link:hover {
    color: #f5f0e8;
    border-bottom-color: #f5f0e8;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    right: 60px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(245, 240, 232, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #e89d95;
}

/* Hero Section */
.hero {
    background: #f5f0e8;
    padding: 80px 60px;
    margin: 60px auto;
    max-width: 1100px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
    line-height: 1.3;
}

.hero p {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: #e89d95;
    color: #f5f0e8;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #d4857f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 157, 149, 0.3);
}

/* Agencies Section */
.agencies-section {
    margin: 80px auto;
    max-width: 1100px;
}

.agencies-section h2 {
    font-size: 42px;
    color: #333;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.agencies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.agency-card {
    background: #f5f0e8;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    overflow: hidden;
}

.agency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(232, 157, 149, 0.15);
}

.agency-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.agency-content {
    padding: 40px 30px;
    text-align: center;
}

.agency-card h3 {
    font-size: 22px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Forms Section */
.forms-section {
    margin: 80px auto;
    max-width: 1100px;
    background: #f5f0e8;
    padding: 60px 70px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.forms-section h2 {
    font-size: 42px;
    color: #333;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e89d95;
}

.forms-section h4 {
    font-size: 24px;
    color: #333;
    font-weight: 200;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e89d95;
}

.forms-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.forms-subheading {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-top: 30px;
    border-top: 1px solid #e8e9ea;
}

.forms-subheading:first-of-type {
    margin-top: 10px;
    padding-top: 0;
    border-top: none;
}

.forms-list {
    list-style: none;
    padding: 0;
}

.forms-list li {
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
}

.forms-list li:before {
    content: "•";
    color: #e89d95;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -3px;
}

.form-link {
    font-size: 18px;
    color: #e89d95;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s;
    display: inline;
    margin-bottom: 5px;
}

.form-link:hover {
    color: #d4857f;
}

.form-number {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    display: inline;
    margin-left: 8px;
}

.form-title-line {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-code {
    color: #999;
    font-weight: 600;
}

.form-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Emergency Section */
.emergency-section {
    background: #e8be5f;
    color: #333;
    padding: 60px;
    margin: 80px auto;
    max-width: 1100px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.emergency-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #333;
}

.emergency-section .cta-button {
    background: #333;
    color: #f5f0e8;
}

.emergency-section .cta-button:hover {
    background: #222;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-content a {
    color: #e8e9ea;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-content a:hover {
    color: #e89d95;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #e8e9ea;
}

/* Installation Section */
.installation-section {
    background: #4a4a4a;
    color: #f5f0e8;
    padding: 80px 60px;
    margin-top: 0;
    border-top: 8px solid #e89d95;
}

.installation-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.installation-section h2 {
    font-size: 36px;
    color: #e89d95;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.installation-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #e8e9ea;
    margin-bottom: 20px;
}

/* Dialog/Modal */
.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.dialog-box {
    background: #f5f0e8;
    padding: 40px 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    text-align: center;
}

.dialog-box h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.dialog-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.dialog-button {
    background: #e89d95;
    color: #f5f0e8;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.dialog-button:hover {
    background: #d4857f;
}

@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo-text h1 {
        font-size: 24px;
    }

    .tagline {
        font-size: 14px;
    }

    .seal-image {
        width: 100px;
        height: 100px;
    }

    .nav-wrapper {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #f5f0e8;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid #e8e9ea;
    }

    .hamburger {
        display: flex;
    }

    .carousel-section {
        height: 400px;
    }

    .carousel-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 20px 25px;
        max-width: 100%;
    }

    .carousel-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .carousel-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .carousel-link {
        font-size: 12px;
    }

    .carousel-dots {
        bottom: 20px;
        right: 20px;
    }

    .hero {
        padding: 50px 30px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 17px;
    }

    .agencies-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .agencies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .forms-section {
        padding: 40px 30px;
    }

    .forms-section h2 {
        font-size: 32px;
    }

    .forms-list li {
        padding-left: 25px;
    }

    .form-title-line {
        font-size: 16px;
    }

    .form-link {
        font-size: 16px;
    }

    .form-number,
    .form-code {
        display: block;
        margin-left: 0;
        margin-top: 5px;
        font-size: 14px;
    }

    .emergency-section {
        padding: 40px 30px;
    }

    .emergency-section h2 {
        font-size: 28px;
    }

    .installation-section {
        padding: 50px 30px;
    }

    .installation-section h2 {
        font-size: 28px;
    }

    .installation-section p {
        font-size: 16px;
    }
}