* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Logo section */
.logo-section {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.logo {
    width: 400px;
    height: 150px;
    margin: 0 auto 20px;
}
.logo img {
    width: 100%;
    max-width: 400px;
}
.logo-svg {
    width: 100%;
    height: 100%;
}

.main-title {
    font-size: 32px;
    color: #1e3a5f;
    text-align: center;
    line-height: 1.4;
    font-weight: normal;
    letter-spacing: 2px;
}

/* Stamp with absolute positioning */
.stamp {
    position: absolute;
    top: 240px;
    right: -19px;
    transform: rotate(-15deg);
    border: 3px dashed #d32f2f;
    color: #d32f2f;
    padding: 11px 20px;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    font-weight: bold;
    opacity: 0.9;
    z-index: 10;
    border-radius: 10px;
}

/* Buttons section */
.buttons-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 108px 0 40px;
    flex-wrap: wrap;
}

.btn {
    background-color: #1e9fd6;
    color: white;
    padding: 17px 35px;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    line-height: 1.4;
    min-width: 280px;
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.1); */
    display: inline-block;
    text-decoration: none;
    -webkit-transition: background-color .3s;
    -moz-transition: background-color .3s;
     -o-transition: background-color .3s;
    transition: background-color .3s; 
}
.btn:hover {
    background: #1e3a5f;
}
/* Contact section */
.contact-section {
    margin-top: 40px;
    margin: 0 auto;
    text-align: center;
    /* max-width: 200px; */
}

.contact-title {
    /* font-size: 36px; */
    /* color: #d32f2f; */
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-info {
    /* font-size: 32px; */
    color: #1e3a5f;
    line-height: 1.3;
}

.contact-info a {
    color: #1e3a5f;
    text-decoration: none;
    display: block;
    margin: 0;
    font-size: 20px;
}

.contact-info a:hover {
    text-decoration: none;
    color: #1e9fd6;
}

/* .contact-info .email {
    color: #0066cc;
}

.phone {
    font-size: 20px;
    margin: 10px 0;
    color: #1e3a5f;
} */

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 24px;
    }
    .logo {
        width:100%;
    }
    .stamp {
        font-size: 14px;
        padding: 10px;
        right: 33px;
        top: 258px;
    }

    .buttons-section {
        margin-top:134px;
        gap: 20px;
        width:100%;
    }
    .btn {
        font-size: 18px;
        padding: 20px 25px;
        min-width: auto;
        width: 46%;
        box-sizing: border-box;
    }
    .contact-title {
        font-size: 18px;
    }

    .contact-info,
    .contact-info a {
        font-size: 18px;
    }
} 
@media (max-width: 500px) {
    .logo {
        height:auto;
    }
    .stamp {
        right: 50%;
        top: 270px;
        margin-right: -131px;
    }
    .buttons-section {
        margin-top: 168px;
    }
}