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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0;
}

.logo-text .tagline {
    font-size: 12px;
    opacity: 0.9;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: white;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.about p {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.service-category {
    margin-bottom: 60px;
}

.service-category h3 {
    font-size: 24px;
    color: #2980b9;
    margin-bottom: 15px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

.category-description {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
    background-color: #ecf7ff;
    padding: 15px;
    border-right: 4px solid #3498db;
    border-radius: 4px;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.service-item h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

/* Team Section */
.team {
    padding: 60px 0;
    background-color: white;
}

.team h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.member {
    background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.member:hover {
    transform: translateY(-5px);
}

.member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #3498db;
}

.member h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.member .role {
    font-size: 14px;
    color: #2980b9;
    margin-bottom: 8px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.websites-section {
    margin-top: 50px;
}

.websites-section h3 {
    font-size: 22px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.websites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.website-link {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.website-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.website-link a {
    display: block;
    padding: 25px;
    text-decoration: none;
    text-align: center;
}

.website-link .website-name {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.website-link a:hover .website-name {
    color: #2980b9;
}

.website-link p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero h2 {
        font-size: 28px;
    }

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

    .services h2,
    .about h2,
    .team h2,
    .contact h2 {
        font-size: 24px;
    }

    .service-items {
        grid-template-columns: 1fr;
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .websites-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
