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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f5f5f5;
}

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

/* Header */
.header {
    background: #1a1a1a;
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d4af37;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 4rem 0;
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 700px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-button {
    display: inline-block;
    background: #d4af37;
    color: #1a1a1a;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.3s;
}

.hero-button:hover {
    background: #c9a027;
    transform: translateY(-2px);
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 300;
}

.intro-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.9;
}

/* Capabilities */
.capabilities {
    padding: 5rem 0;
    background: #1a1a1a;
    color: white;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 2px;
}

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

.capability-box {
    background: #2c2c2c;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #444;
    transition: transform 0.3s, border-color 0.3s;
}

.capability-box:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.capability-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.capability-box h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.capability-box p {
    color: #ccc;
    line-height: 1.8;
}

/* Showcase */
.showcase {
    padding: 5rem 0;
    background: white;
}

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

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.showcase-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.95), transparent);
    color: white;
    padding: 2rem;
}

.showcase-content h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.showcase-content p {
    color: #e0e0e0;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: #f5f5f5;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-left: 4px solid #d4af37;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    color: #1a1a1a;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-column p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #d4af37;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
}

/* Page Styles */
.page-header {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1.2rem;
    color: #d4af37;
}

.page-content {
    padding: 4rem 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-text h2 {
    color: #1a1a1a;
    margin: 2rem 0 1rem;
    font-size: 2rem;
    font-weight: 300;
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #555;
    font-size: 1.1rem;
}

.content-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info,
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 300;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
}

.contact-item a:hover {
    color: #d4af37;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.submit-btn {
    background: #1a1a1a;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section-heading {
        font-size: 2rem;
    }
}

