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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-bg {
    background: linear-gradient(135deg, #c4cbca 20%, #c4cbca 100%);
    padding: 2rem 0;
}


.header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    max-width: 150px;
    height: auto;
}

.header-text {
    flex-grow: 1;
}

.header-text h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.header-text p {
    font-size: 1.2rem;
    color: #666;
}



.services-grid {
    
    padding: 4rem 0;
}

.services-grid h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-image {
    max-width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.card-image img {
    max-width: 100px;
    height: auto;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
}




.about-section {
    padding: 4rem 0;
    background-color: white;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    padding: 0 2rem;
}

.about-image img {
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #444;
}

.about-features {
    display: block;
    list-style-type: disc;
    margin-left: 1rem;
    padding-left: 1.5rem;
    
}

.about-features li {
    margin-bottom: 1.1rem;
    font-size: 1rem;
    color: #444;
}




.social-section {
    padding: 4rem 0;
}

.social-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.icon-wrapper {
    background-color: white;
    padding: 0.1rem;
    border-radius: 8px;
    line-height: 0.1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.icon-wrapper img{
    max-width: 100px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}





.contact-section {
    padding: 4rem 0;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #444;
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #666;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #444;
}




footer {
    background-color: #333;
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-info .name {
    font-size: 1.2rem; 
    font-weight: bold; 
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    filter: invert(1);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}




@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-text h1 {
        font-size: 2rem;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .social-icons {
        flex-direction: column;
        align-items: center;
    }
}
