* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
}

body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 90%;
    height: 90%;
    max-width: 1100px;
    margin-left: 200px;
}

.card {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    padding: 40px;
    gap: 30px;
}

.image-section {
    height: 90%;
    width: 40%;
    /* flex: 1; */
    text-align: center;
}

.image-section img {
    height: 100%;
    max-width: 400px;
    border-radius: 25px;
    object-fit: cover;
}

.content-section {
    width: 60%;
    /* flex: 2; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}
h2{
    font-size: 1.7rem;
    color: #333;
    font-weight: 600;
}

h1 {
    margin-top: -15px;
    font-size: 2.5rem;
    color: #333;
}

h1 span {
    font-weight: 700;
}

p {
    width: 65%;
    margin: 15px 0;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.buttons {
    width: 50%;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
}

button {
    padding: 12px;
    font-size: 12px;
    border: none;
    border-radius: 30px;
    background-color: #333;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #555;
}

.social-links {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 10px;
}

.social-links a {
    font-size: 20px;
    color: #333;
    transition: 0.3s;
}

.social-links a:hover {
    color: #555;
}

@media (max-width: 768px) {
    .card {
        flex-direction: column;
        text-align: center;
    }

    .image-section img {
        max-width: 200px;
    }

    .buttons {
        align-items: center;
    }
}
