/* Premium Corporate Design */

:root {
    --primary: #000000;
    --secondary: #1a1a1a;
    --accent: #b8935f;
    --accent-light: #d4b896;
    --text-primary: #000000;
    --text-secondary: #4a4a4a;
    --text-tertiary: #7a7a7a;
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --bg-dark: #0f0f0f;
    --border: #d0d0d0;
    --border-light: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.logo-icon {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary);
    color: var(--bg-primary);
    padding: 14px 32px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background: var(--bg-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

/* Hero */
.hero {
    padding: 180px 0 120px;
    background: var(--bg-primary);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-background,
.hero-overlay {
    display: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--bg-dark);
    border: none;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

.btn {
    padding: 18px 40px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--bg-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg-primary);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 60px 0;
    position: relative;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: var(--primary);
}

.stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0;
    border: none;
    box-shadow: var(--shadow-md);
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(0.2);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0);
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.05);
}

/* Image Placeholders */
.image-placeholder {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.2s;
    cursor: pointer;
}

.image-placeholder:hover {
    border-color: var(--border);
}

.image-placeholder span {
    display: none;
}

.image-placeholder p {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.image-placeholder.large {
    aspect-ratio: 3/2;
}

.image-placeholder.small {
    aspect-ratio: 16/9;
}

/* Sections */
section {
    padding: 140px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--primary);
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* About */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    margin-bottom: 96px;
}

.about-text-block {
    margin-bottom: 40px;
}

.about-text-block h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.about-text-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential-item {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--bg-primary);
    border: none;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.credential-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.credential-icon {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.credential-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.credential-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.visual-card {
    position: sticky;
    top: 96px;
}

.license-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    border: none;
    box-shadow: var(--shadow-lg);
}

.office-showcase {
    text-align: center;
}

.office-showcase h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 64px;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.office-card {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0;
    border: none;
    box-shadow: var(--shadow-md);
    position: relative;
}

.office-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.office-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(0.1);
}

.office-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0);
}

.office-card:hover::after {
    background: rgba(0, 0, 0, 0.05);
}

/* Programs */
.programs {
    background: var(--bg-primary);
    position: relative;
}

.programs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.program-card {
    background: var(--bg-secondary);
    border: none;
    border-radius: 0;
    padding: 48px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.program-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.program-card:hover::before {
    width: 100%;
}

.program-card.featured {
    background: var(--bg-dark);
    color: var(--bg-primary);
}

.program-card.featured::before {
    width: 100%;
    background: var(--accent);
}

.program-card.featured h3,
.program-card.featured .program-tagline,
.program-card.featured .program-description,
.program-card.featured .feature-item {
    color: var(--bg-primary);
}

.program-card.featured .program-features h4 {
    color: var(--accent);
}

.program-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.program-icon {
    display: none;
}

.program-badge {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 8px 16px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.program-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.program-tagline {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.program-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.program-features h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-list {
    display: grid;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--text-secondary);
    padding: 4px 0;
}

.feature-icon {
    width: 18px;
    height: 18px;
    background: var(--accent);
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.program-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.program-image-small {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.program-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-image-small:hover img {
    transform: scale(1.05);
}

/* Why Us */
.why-us {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 96px;
}

.advantage-card {
    padding: 40px;
    background: var(--bg-primary);
    border: none;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.advantage-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    color: var(--accent);
    margin-bottom: 24px;
}

.advantage-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Partner Universities */
.partner-universities {
    text-align: center;
    margin-bottom: 96px;
    padding-bottom: 96px;
    border-bottom: 1px solid var(--border-light);
}

.partner-universities h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.partner-universities > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 64px;
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.university-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.university-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.university-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.university-card:hover::after {
    opacity: 1;
}

.university-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(0.1);
}

.university-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.university-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 1;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.university-card:hover .university-overlay {
    transform: translateY(0);
}

.university-overlay p {
    color: var(--bg-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.partner-description {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
}

.partner-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.team-section {
    text-align: center;
}

.team-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.team-section > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 64px;
}

.team-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.team-showcase img {
    width: 100%;
    height: auto;
    border-radius: 0;
    border: none;
    box-shadow: var(--shadow-xl);
}

/* Compliance */
.compliance {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

.compliance-content {
    max-width: 800px;
    margin: 0 auto;
}

.compliance-text .lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.compliance-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.compliance-item {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--bg-primary);
    border: none;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.compliance-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.compliance-item strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.compliance-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.commitment-box {
    background: var(--bg-dark);
    border: none;
    padding: 48px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.commitment-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
}

.commitment-box p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.commitment-box strong {
    color: var(--accent);
    font-weight: 700;
}

/* Contact */
.contact {
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info-side h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 16px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
}

.method-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--bg-dark);
    stroke-width: 2;
}

.method-details strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
}

.method-details p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

.partnership-note {
    padding: 32px;
    background: var(--bg-secondary);
    border: none;
    border-left: 4px solid var(--accent);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
}

.partnership-note h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.partnership-note p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.form-container {
    background: var(--bg-secondary);
    border: none;
    padding: 48px;
    border-radius: 0;
    box-shadow: var(--shadow-md);
}

.form-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: 0;
    font-size: 15px;
    font-family: inherit;
    background: var(--bg-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(184, 147, 95, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    cursor: pointer;
    border: none;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 3px solid var(--accent);
    padding: 80px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 8px 0;
    letter-spacing: 0.02em;
}

.footer p:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .programs-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero {
        padding: 96px 0 64px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid,
    .office-grid,
    .universities-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    section {
        padding: 80px 0;
    }
}
