* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Header Styles */
header {
    background-color: #414141;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    text-transform: uppercase;
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

.navbar ul li a {
    padding: 10px;
    color: aliceblue;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #8E54E9;
}

/* Main Content Styles */
main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    flex-wrap: wrap;
}

.left {
    max-width: 50%;
}

.left h2 {
    font-size: 36px;
    font-weight: 800;
    color: rgba(49, 19, 94, 1);
    margin-bottom: 20px;
}

.left p {
    font-size: 18px;
    font-weight: 500;
    color: rgba(80, 82, 88, 1);
    line-height: 1.6;
    margin-bottom: 30px;
}

.container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.left-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
    color: #fff;
    border: 1px solid wheat;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.left-button:hover {
    background: linear-gradient(90deg, #8E54E9 0%, #4776E6 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .navbar ul {
        flex-direction: column;
        gap: 10px;
    }

    main {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .left {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .left h2 {
        font-size: 28px;
        padding: 0;
    }

    .left p {
        padding: 0;
    }

    .container {
        justify-content: center;
    }

    .right img {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .left h2 {
        font-size: 24px;
    }

    .left p {
        font-size: 16px;
    }

    .left-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icons a {
    color: #333;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #8E54E9;
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
}