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

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #E0E0E0;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

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

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #4A90E2;
}

/* Hero Styles */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    margin-top: 80px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #4A90E2;
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 2px solid #4A90E2;
}

.cta-button:hover {
    background-color: transparent;
}

/* Services Styles */
.services {
    padding: 100px 0;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.service-block {
    margin-bottom: 50px;
    padding: 30px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    border: 1px solid #333;
}

.service-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.service-block p {
    margin-bottom: 20px;
    font-size: 16px;
}

.service-block ul {
    list-style-type: none;
    padding-left: 0;
}

.service-block ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-block ul li:before {
    content: "•";
    color: #4A90E2;
    position: absolute;
    left: 0;
    top: 0;
}

/* Work/Portfolio Styles */
.work {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.work h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.work p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #999;
}

.case-study {
    margin-bottom: 50px;
    padding: 30px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    border: 1px solid #333;
}

.case-study h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

/* About Styles */
.about {
    padding: 100px 0;
}

.about h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

.about p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #999;
}

.team-member {
    margin-bottom: 40px;
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    border: 1px solid #333;
}

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

.mission {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background-color: rgba(40, 40, 40, 0.7);
    border-radius: 8px;
    border: 1px solid #333;
}

/* Contact Styles */
.contact {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #999;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 50px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #333;
    background-color: #1a1a1a;
    color: #E0E0E0;
    font-family: 'Inter', sans-serif;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #4A90E2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: transparent;
}

.contact-info {
    text-align: center;
    padding: 30px;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    border: 1px solid #333;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    margin: 0 10px;
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4A90E2;
}

/* Footer Styles */
.footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #333;
    background-color: rgba(10, 10, 10, 0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav ul li {
        margin: 5px 15px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .services h2,
    .work h2,
    .about h2,
    .contact h2 {
        font-size: 28px;
    }
    
    .service-block,
    .case-study,
    .team-member {
        padding: 20px;
    }
}