/* Technology Page Styles */
.technology-page {
    padding-top: 70px; /* Account for fixed header */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(42, 82, 152, 0.9), rgba(42, 82, 152, 0.9)), url('../images/technology-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Technology Content */
.technology-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 20px;
}

.tech-card h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.tech-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
}

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

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-item i {
    font-size: 2.5rem;
    color: #2a5298;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .technology-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .tech-card {
        padding: 20px;
    }

    .card-icon {
        font-size: 2.5rem;
    }
} 