
/* Hero Section */
.hero {
    background: var(--primary-gradient);
    padding: 80px 0 0;
    color: var(--white);
}

.hero-content {
    width: 1200px;
    margin:0 auto;
    display: flex;
    justify-content: space-around;    
    align-items: center;
}
.hero-image{
    width: 325px;
}
.hero-image img{
    width: 325px;
}
.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card,
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-info-card {
    background: var(--primary-gradient);
    color: var(--white);
}

.contact-card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-label {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 15px;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group {
    margin-bottom: 20px;
}
