@charset "utf-8";
/* CSS Document */

header {
    background-image: url(../img/Background/sercureit/bg-secureit.jpg);
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: normal;
    background-color: rgb(255, 255, 255);
    color: black;
    padding-top: 30px;
    padding-bottom: 45px;
}

.cointainerAE {
    width: 60%;
    margin: 0 auto;
    line-height: 1.3;
    padding-top: 15px;
    padding-bottom: 20px;
}

:root {
    --primary: #0066cc;
    --secondary: #004d99;
    --accent: #00a8e8;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #28a745;
    --warning: #ffc107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.architecture-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.architecture-hero {
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    text-shadow: 3px 3px 4px black;
    border-radius: 10px;
    margin-top: 20%;
    margin-bottom: 3rem;
}

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

.architecture-hero h2 {
    font-size: 1.8rem;
    font-weight: 400;
    max-width: 70%;
    margin: 0 auto;
}

/* Problem Section */
.problem-section {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}

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

.problem-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--warning);
}

.problem-card h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

/* What We Do Section */
.what-we-do {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.step-number {
    display: inline-block;
    background: var(--accent);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    margin-bottom: 1rem;
}

.step-title {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Holistic Approach */
.holistic-approach {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.approach-card {
    background: var(--light);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.approach-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.approach-card.business {
    border-top: 4px solid #0066cc;
}

.approach-card.applications {
    border-top: 4px solid #00a8e8;
}

.approach-card.data {
    border-top: 4px solid #28a745;
}

.approach-card.technology {
    border-top: 4px solid #ffc107;
}

/* Benefits Section */
.benefits-section {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.benefit-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 8px;
}

.benefit-icon {
    background: var(--success);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Who Benefits */
.who-benefits {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.industry-item {
    background: var(--light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.highlight {
    background: var(--accent);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .architecture-hero h1 {
        font-size: 2.2rem;
    }

    .architecture-hero h2 {
        font-size: 1.2rem;
    }

    .process-steps,
    .approach-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}