/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    flex-shrink: 0;
}

.brand-name h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.brand-name p {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #1e3a8a;
    color: white;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-1px);
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 50px;
}

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

.service-card {
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 12px;
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.service-card p {
    color: #64748b;
}

/* Security Section */
.security {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.security .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.security-content h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 30px;
    text-align: left;
}

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

.security-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #475569;
}

.security-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

/* Locations Section */
.locations {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.locations h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 50px;
}

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

.location-card {
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
}

.location-card h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.location-card p {
    color: #64748b;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.products h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 50px;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.product-card h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin: 20px 20px 10px;
}

.product-card p {
    color: #64748b;
    margin: 0 20px 15px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #059669;
    margin: 0 20px 20px;
}

.btn-product {
    display: block;
    margin: 0 20px 20px;
    padding: 12px 24px;
    background: #1e3a8a;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
}

.btn-product:hover {
    background: #1e40af;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.why-choose h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 50px;
}

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

.benefit-item {
    padding: 30px 20px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #64748b;
}

/* Certifications Section */
.certifications {
    padding: 60px 0;
    background: #1e3a8a;
    color: white;
    text-align: center;
}

.certifications h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.cert-item {
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-weight: 600;
}

/* Disaster Recovery Section */
.disaster-recovery {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.disaster-recovery .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dr-content h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    text-align: left;
}

.dr-content p {
    color: #64748b;
    margin-bottom: 25px;
    text-align: left;
    line-height: 1.6;
}

.dr-content ul {
    list-style: none;
    text-align: left;
}

.dr-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #475569;
}

.dr-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: bold;
}

.dr-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.security-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #3b82f6;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-content p {
        text-align: center;
    }
    
    .security .container,
    .disaster-recovery .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .brand-name h1 {
        font-size: 1.6rem;
    }
}