@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


/* General Styles */
body,
html {
    margin: 0;
    padding: 0;
    /* font-family: 'Arial', sans-serif; */
    font-family: "Playfair Display", serif;
    background-color: #f4f4f4;
    /* background-color: #e0f0ff; */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.top {
    /* width: 50px;
    height: 20px; */
    display: block;
    max-width: 100%;
    height: auto;
    margin: -130px 0;
    padding: 0;
    /* border: none; */

    /* border: 1px solid red; */
}

@media screen and (max-width: 480px) {
    .top{
        margin-top:20px;
        margin-bottom: -100px;
    }
}

.top img {
    width: 100%;
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* background-color: #fff; */
    padding: 40px;
    border-radius: 15px;
    /* box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1); */
    max-width: 1000px;
    width: 90%;
    margin: auto;
}

.thy {
    display: flex;
}

@media screen and (max-width: 660px) {
    .thy{
        flex-direction: column;
    }
}

/* Left Section (Illustration) */
.left-section {
    flex: 1;
    padding-right: 20px;
}

.left-section img {
    max-width: 100%;
    height: auto;
}

/* Right Section (Text) */
.right-section {
    flex: 1;
    padding-left: 20px;
    text-align: left;
}

.right-section h1 {
    font-size: 36px;
    color: #003b75;
    margin-bottom: 20px;
}

.right-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.right-section .button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #ff4b5c;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.right-section .button:hover {
    background-color: #ff1a30;
}

a {
    color: #003b75;
}

a:hover {
    background-color: #003b75;
    color: white;
}