/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark gray background */
    color: #e0e0e0; /* Light gray text for contrast */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll if plates extend too far */
}

.container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Typography */
h1, h2 {
    color: #ffffff; /* White headings */
    margin-bottom: 20px;
}

h1.main-headline {
    font-size: 2.5em;
    text-align: center;
    margin-top: 0; 
    margin-bottom: 30px; 
}

h2 {
    font-size: 2em;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-top: 40px;
}

.benefits-section {
    margin-top: 32px; /* Reduced from 40px by 20% */
}


/* Remove border for specific sections as titles are removed */
.pain-section h2,
.disclaimer-section h2 {
    border-bottom: none;
    margin-top: 0; 
    padding-bottom: 0;
}

p, li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li::before {
    content: "✓ ";
    color: #ffd700; 
    margin-right: 8px;
}

.highlight-text {
    font-weight: bold;
    color: #FFD700; /* Gold color */
}

/* Hero Section */
.hero-section {
    background-color: #000000; 
    padding: 40px 20px;
    text-align: center;
}

.hero-main-content {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.profile-photo-container {
    position: relative; 
    width: 250px; 
    height: auto; 
    margin: 0 auto; 
}

.profile-photo {
    display: block; 
    width: 100%;
    max-width: 250px; 
    height: auto;
    border-radius: 15px; 
    object-fit: cover;
    border: 3px solid #333; 
}

.expert-overlay-info {
    position: absolute;
    bottom: 20px; 
    left: -30%; 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 8px; 
    width: auto; 
}

.expert-name-plate {
    background-color: #FFD700; 
    color: #000000; 
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    white-space: nowrap; 
}

.expert-experience-plate {
    background-color: rgba(255, 255, 255, 0.9); 
    color: #333333; 
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.95em;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 220px; 
    white-space: normal; 
}

.subtitle {
    font-size: 1.2em;
    color: #b0b0b0; 
    margin-top: 30px; 
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000000; 
    background-image: linear-gradient(to right, #FFD700 0%, #FFA500 51%, #FFD700 100%);
    background-size: 200% auto;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.5s;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cta-button:hover {
    background-position: right center; 
    color: #000000;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

/* Section Styles */
.pain-section,
/* .benefits-section, */ /* Margin adjusted above */
.cta-section,
.disclaimer-section {
    padding: 40px 20px;
}

.pain-section ul li::before,
.benefits-section ul li::before {
    /* Using default checkmark for these sections as per HTML */
}

.pain-section strong {
    color: #ffd700;
}

.cta-section {
    text-align: center;
    background-color: #1f1f1f; 
}

.cta-section h2 {
    border-bottom: none;
}

.disclaimer-section p {
    font-size: 0.9em;
    color: #a0a0a0;
    text-align: center; 
}

/* Footer */
footer {
    background-color: #000000; 
    color: #a0a0a0;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

footer a {
    color: #ffd700; 
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1.main-headline {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .profile-photo-container {
        width: 200px; 
    }

    .expert-overlay-info {
        left: -25%; /* Adjusted offset for medium screens */
        bottom: 15px;
    }

    .expert-name-plate {
        font-size: 1em;
        padding: 6px 12px;
    }

    .expert-experience-plate {
        font-size: 0.9em;
        padding: 8px 12px;
        max-width: 180px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 15px;
    }
    h1.main-headline {
        font-size: 1.6em; /* Adjusted for single line */
        white-space: nowrap; /* Ensure single line */
        margin-bottom: 25px;
    }

    h2 {
        font-size: 1.6em;
    }

    .profile-photo-container {
        width: 180px; 
    }

    .expert-overlay-info {
        position: absolute; /* Keep absolute for overlay */
        left: -30%; /* Maintain 30% offset from left of container */
        bottom: 10px; /* Adjust vertical position */
        align-items: flex-start; /* Align to the start (left) */
        /* transform: translateX(0); Ensure no conflicting transform */
        width: auto; /* Let content define width */
        margin-top: 0; /* Remove margin-top if it was added for static */
    }

    .expert-name-plate {
        font-size: 0.8em; /* Adjusted for smaller screens */
        padding: 5px 10px;
        text-align: left;
    }

    .expert-experience-plate {
        font-size: 0.75em; /* Adjusted for smaller screens */
        padding: 6px 10px;
        width: auto; /* Let content define width */
        max-width: 150px; /* Constrain max width */
        text-align: left;
    }

    .subtitle {
        font-size: 1em;
        margin-top: 25px;
    }

    p, li {
        font-size: 1em;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1em;
        width: 90%; 
        box-sizing: border-box;
    }
    .pain-section ul,
    .benefits-section ul {
        padding-left: 10px; 
    }
}

