body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: #3D526D;
    color: white;
    min-height: 100vh;
    font-size: 16px;
}

.header {
    width: 100%;
    padding: 2% 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.logo {
    font-size: 2.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: auto;
    max-width: none;
}

/*-- removing the logo image
.logo img {
    width: 3.5rem;
    height: auto;
    max-width: 100%;
}
*/

.main-content {
    width: 90%;
    margin: 8% auto 0;
    max-width: none;
    display: flex;
    justify-content: flex-end;
}

.content-right {
    width: 65%;
    max-width: 800px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    width: 100%;
}

p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
    width: 85%;
}

.contact-btn {
    display: block;
    width: 85%;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

a:hover {
    border-bottom-color: white;
}

/* Large devices (1200px and up) */
@media screen and (max-width: 1200px) {
    .content-right {
        width: 75%;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    .logo {
        font-size: 2rem;
    }
}

/* Laptops (992px and up) */
@media screen and (max-width: 992px) {
    .main-content {
        margin-top: 6%;
        width: 85%;
    }
    
    .content-right {
        width: 85%;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    p {
        font-size: 1.125rem;
    }
    
    .logo {
        font-size: 1.75rem;
    }
    /*-- removing the logo image    
    .logo img {
        width: 3rem;
    } */
}

/* Tablets (768px and up) */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.5rem 5%;
    }
    
    .main-content {
        margin-top: 4%;
        justify-content: center;
    }
    
    .content-right {
        width: 85%;
    }
    
    h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    /*-- removing the logo image
    .logo img {
        width: 2.5rem;
    }
    */
    
    .contact-btn {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Portrait phones (576px and up) */
@media screen and (max-width: 576px) {
    .header {
        padding: 1rem 4%;
    }
    
    .main-content {
        width: 92%;
        margin-top: 2rem;
    }
    
    .content-right {
        width: 100%;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    p {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    /*-- removing the logo image
    .logo img {
        width: 2rem;
    }
    */
    
    .contact-btn {
        padding: 0.875rem;
    }
} 