@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    margin: 0;
    font-family: 'Calibri', sans-serif;
    background-color: #1D202B;
    color: #c7c8ca;
}

h1, h2, h3 {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-style: normal;
}

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

header {
    text-align: center;
    padding: 20px 0;
    border-top: 0px solid #FFFFFF;
}

header .logo img {
    max-width: 400px;
    width: 100%;
}

.hero {

    padding: 40px 40px;
}

.hero-text {
    text-align: center;
}

.contact h1 {
    color: #c7c8ca;
    font-size: 2em;
    margin: 20px;
}

.contact p {
    margin: 35px 0;
}

.contact a {
    color: #D1E000;
    text-decoration: none;
    font-weight: bold;
}

.cta-button {
    background-color: yellow;
    border: 2px solid rgb(255, 255, 0);
    color: black;
    padding: 10px 20px;
    margin-top: 25px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    border-radius: 10px;
}

.cta-button:hover {
    background-color: yellow;
    color: black;
}

.hero-image {
    flex: 1 1 40%;
    max-width: 40%;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
}

.usps {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    margin: 20px 0;
    background-color: black;
}

.usp {
    text-align: center;
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    margin: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.usp img {
    width: 50px;
    height: 50px;
    margin-top: 20px;
}

.usp h3 {
    color: black;
    margin: 5px 30px 25px 30px;
    font-size: 1.5em;
}

.contact {
    background-color: #ffffff00;
    color: #c7c8ca;
    text-align: center;
    padding: 40px 20px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.hero-text h2 {
    margin-top: 0;
    font-size: 1.75em;
}

.hero-text p {
    margin: 10px 0;
    
}

.hero-text h3 {
    margin: 10px 0;
    font-size: 1.25em;
}

.hero-text a {
    color: #D1E000;
    text-decoration: none;
    font-weight: bold;
}

.hero-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text, .hero-image {
        max-width: 100%;
    }

    .cta-button {
        margin-top: 20px;
    }

    .usps {
        flex-direction: column;
        align-items: center;
    }

    .usp {
        width: 80%;
        margin-bottom: 20px;
    }

    .contact {
        padding: 50px 10px;
        padding-bottom: 50px;
    }
}
