* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1D252F;
    background-color: #fff;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3300FF;
    text-decoration: none;
}

/* Media Logos Slider */
.media-slider {
    background: #f5f9ff;
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.media-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.media-logo {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main Content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.advertorial-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1D252F;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.875rem;
    }
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-section {
    margin-bottom: 2rem;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.content-section a {
    color: #3300FF;
    text-decoration: none;
    font-weight: 600;
}

.content-section a:hover {
    text-decoration: underline;
}

.content-section strong {
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
    color: #1D252F;
}

.steps {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.step {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.step:last-child {
    margin-bottom: 0;
}

.map-container {
    text-align: center;
    margin: 2rem 0;
}

.map-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-image:hover {
    transform: scale(1.02);
}

.cta-button {
    display: inline-block;
    background: #3300FF;
    color: #ffffff !important;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 2rem 0;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #2800cc;
    color: #ffffff !important;
}

.cta-button:visited {
    color: #ffffff !important;
}

/* Footer */
footer {
    background: #f5f9ff;
    color: #1D252F;
    padding: 3rem 2rem 2rem;
    margin-top: 0;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
}

.footer-divider {
    border: none;
    border-top: 1px solid #C0CBD8;
    margin: 2rem 0;
}

.disclosure-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.disclosure-text {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #666;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #C0CBD8;
}