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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Merriweather', serif;
}

.underline {
    text-decoration: underline;
}

.small-caps {
    font-variant: small-caps;
    letter-spacing: 0.05em;
}

/* Announcement Section */
.announcement {
    margin-bottom: 30px;
}

.announcement p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.effective-date {
    margin-bottom: 5px;
}

.merger-partner {
    font-size: 1.1rem;
}

/* Territory Info Section */
.territory-info {
    margin-bottom: 20px;
}

.territory-heading {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.exclusion-notice {
    font-size: 1rem;
    margin-bottom: 10px;
}

.ever {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 600;
}

/* Map Section */
.map-section {
    margin: 30px 0;
}

.wisconsin-map {
    max-width: 100%;
    width: 550px;
    height: auto;
}

/* Transition Notice */
.transition-notice {
    margin: 30px 0;
}

.counties-notice {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.transition-text {
    font-size: 1rem;
    line-height: 1.8;
}

/* Heritage Message */
.heritage-message {
    margin: 40px 0 30px;
}

.heritage-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.8;
}

.company-name {
    font-size: 1rem;
}

/* Logo Section */
.logo-section {
    margin-top: 30px;
}

.company-logo {
    max-width: 280px;
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .container {
        padding: 20px 15px;
    }
    
    .announcement p,
    .territory-heading,
    .exclusion-notice {
        font-size: 1rem;
    }
    
    .wisconsin-map {
        width: 100%;
    }
    
    .company-logo {
        max-width: 220px;
    }
}
