body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background-color: #d9a35f;
    color: #0a0f2c;
    text-align: center;
    line-height: 1.6;
    letter-spacing: -1px;
}

/* Header Styling */
header {
    background-color: #0a0f2c;
    color: #f5f0d3;
    padding: 20px;
    text-align: center;
    position: relative;
}

/* Profile Picture - Changes Position Based on Screen Size */
.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 20px; /* Rounded square */
    object-fit: cover;
    border: 3px solid #f5f0d3;
    position: absolute;
    left: 20px;
    top: 20px;
}

h1 {
    font-size: 2.5em;
    margin: 0;
    line-height: 1.2;
}

p {
    font-size: 1.2em;
    margin: 15px 0;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 10px auto;
    max-width: 90%;
}

.benefits li {
    margin: 8px 0;
    font-size: 1.1em;
}

.bold {
    color: #d9a35f;
}

/* Videos Section */
.videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.video-container {
    width: 100%;
    max-width: 300px;
    background-color: #f5f0d3;
    border: 2px solid #f5f0d3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.video-player {
    width: 100%;
    height: auto;
}

.video-title {
    font-size: 1.1em;
    padding: 10px;
    background-color: #0a0f2c;
    color: #f5f0d3;
}

/* Connect Me Section */
.connect-me-section {
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    color: #001F3F;
    background-color: #f5f0d3;
    border: 2px solid #0a0f2c;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #0a0f2c;
    color: #f5f0d3;
}

/* Social Media Section */
.social-media-section {
    background-color: #0a0f2c;
    padding: 20px;
    color: #f5f0d3;
}

.social-media-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    font-size: 1.2em;
    color: #d9a35f;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.3s ease;
}

.social-links a:hover {
    color: #f5f0d3;
}

.social-links a:active {
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 10px;
    background-color: #000000;
    color: #ffffff;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    .benefits {
        padding: 0 10px;
        text-align: left;
        font-size: 12px;
    }

    .videos {
        flex-direction: column;
        align-items: center;
    }

    .video-container {
        width: 90%;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .social-links {
        flex-direction: column;
    }

    .social-links a {
        font-size: 1em;
    }

    /* Move profile picture to the center on mobile */
    .profile-picture {
        position: static;
        display: block;
        margin: 0 auto 15px;
    }
}

@media (min-width: 1200px) {
    .videos {
        gap: 30px;
    }

    .video-container {
        width: 350px;
    }

    .cta-button {
        padding: 20px 40px;
        font-size: 1.5em;
    }

    .social-links a {
        font-size: 1.5em;
    }
}


