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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #2E7D32;
    color: #FFFFFF;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Header Styles */
header {
    margin-bottom: 30px;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: 400;
}

.header-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.icon-link {
    color: #FFFFFF;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.icon-link:hover {
    transform: scale(1.2);
}

/* Services Section */
.services {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.services-title {
    color: #FF0000;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.services-list {
    list-style: none;
    text-align: left;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333333;
    font-size: 1rem;
    padding: 8px 0;
    transition: background-color 0.3s ease;
}

.service-item:hover {
    background-color: #F5F5F5;
    border-radius: 8px;
    padding-left: 10px;
}

.service-icon {
    margin-right: 15px;
    font-size: 1.2rem;
    color: #2E7D32;
    width: 20px;
    text-align: center;
}

/* Contact Section */
.contact {
    margin-bottom: 30px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8BC34A;
    color: #FFFFFF;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    background-color: #7CB342;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-btn i {
    margin-right: 12px;
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .services {
        padding: 20px;
    }
    
    .service-item {
        font-size: 0.9rem;
    }
    
    .contact-btn {
        padding: 15px;
        font-size: 1rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services, .contact {
    animation: fadeInUp 0.6s ease-out;
}

header {
    animation: fadeInUp 0.4s ease-out;
}

