* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f0f2f5;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}


#personal-info {
    background: linear-gradient(135deg, #e63946, #f77f00);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 25px;
    width: 80%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#personal-info h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

#personal-info p {
    font-size: 1.3em;
    margin-bottom: 5px;
}

#profile-pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid white;
}


section {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    width: 80%;
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-10px);
}

section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #e63946;
    padding-bottom: 10px;
}

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

ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

ul li::before {
    content: "•";
    color: #e63946;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.5em;
    font-size: 1.5em;
}


#services ul li span {
    color: #e63946;
    font-size: 1.5em;
    vertical-align: middle;
    margin-right: 8px;
}


button {
    background-color: #e63946;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.3em;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #f77f00;
    transform: scale(1.05);
}

/* Media Queries */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    #personal-info, section {
        width: 90%;
    }

    #personal-info h1 {
        font-size: 2.2em;
    }

    section h2 {
        font-size: 1.8em;
    }

    ul li {
        font-size: 1.1em;
    }

    button {
        font-size: 1.1em;
        padding: 10px 20px;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    #personal-info, section {
        width: 100%;
        padding: 20px;
        border-radius: 10px;
    }

    #personal-info h1 {
        font-size: 1.8em;
    }

    #personal-info p {
        font-size: 1.1em;
    }

    #profile-pic {
        width: 100px;
        height: 100px;
    }

    section h2 {
        font-size: 1.5em;
    }

    ul li {
        font-size: 1em;
        margin-bottom: 8px;
    }

    button {
        font-size: 1em;
        padding: 8px 18px;
    }
}

/* Large Devices (1200px and above) */
@media (min-width: 1200px) {
    #personal-info, section {
        width: 60%;
    }

    #personal-info h1 {
        font-size: 3.5em;
    }

    #personal-info p {
        font-size: 1.5em;
    }

    section h2 {
        font-size: 2.5em;
    }

    ul li {
        font-size: 1.4em;
    }

    button {
        font-size: 1.5em;
        padding: 15px 30px;
    }
}
