/* ----------------------------------
   BASE STYLES
---------------------------------- */
body {
    font-family: "Inter", Arial, sans-serif;
    background: #f7f7f7;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 50px 0;
    background: white;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

h2 {
    font-weight: 400;
    margin: 8px 0;
}

.tagline {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

/* ----------------------------------
   BUTTONS
---------------------------------- */
.btn-download {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.btn-download:hover {
    background-color: #005fa3;
}

/* ----------------------------------
   CONTACT LINKS
---------------------------------- */
.contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.contact a {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #0077cc;
    text-decoration: none;
}

.contact i {
    margin-right: 6px;
}

/* ----------------------------------
   SECTIONS
---------------------------------- */
section {
    background: white;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 8px;
    border: 1px solid #e7e7e7;
}

section h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

section .content ul,
section .content p {
    margin: 0;
    padding-left: 15px;
    line-height: 1.5;
}

/* ----------------------------------
   FOOTER
---------------------------------- */
footer {
    text-align: center;
    padding: 25px;
    font-size: 0.9rem;
    color: #888;
    background: white;
    border-top: 1px solid #e5e5e5;
}

/* ----------------------------------
   MEDIA QUERIES FOR RESPONSIVENESS
---------------------------------- */

/* Tablets & small laptops */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        max-width: 100%;
    }

    header {
        padding: 30px 15px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .tagline {
        font-size: 0.85rem;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    .btn-download {
        padding: 8px 15px;
        font-size: 0.95rem;
    }

    .contact a {
        font-size: 0.85rem;
    }

    section {
        padding: 15px 20px;
        margin: 20px 0;
    }
}

/* Phones & extra small devices */
@media (max-width: 480px) {
    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1rem;
    }

    .profile-img {
        width: 80px;
        height: 80px;
    }

    .btn-download {
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
    }

    .contact {
        flex-direction: column;
        gap: 5px;
    }

    .contact a {
        justify-content: center;
    }

    section {
        padding: 12px 15px;
        margin: 15px 0;
    }
}

