/* Nata Software - Bold Modern Design */

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

:root {
    --red-primary: #c8102e;
    --red-dark: #a00d25;
    --text-dark: #1a1a1a;
    --text-gray: #6b6b6b;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-pink: #fef1f3;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

/* Sidebar Navigation (Desktop) */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 80px;
    height: 100vh;
    background: var(--red-primary);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 1.5rem 0;
}

.sidebar-logo {
    margin-bottom: 2rem;
}

.sidebar-logo img {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}


.sidebar-brand {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: center;
    display: flex;
    gap: 0.3rem;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 60%;
    max-width: 600px;
    height: 100vh;
    background: var(--red-primary);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    padding: 4rem 4rem;
}

.fullscreen-menu.active {
    transform: translateX(0);
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    font-weight: 300;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 6rem;
    padding-left: 1rem;
}

.menu-nav a,
.menu-nav-link {
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 700;
    transition: opacity 0.2s;
    line-height: 1.2;
    cursor: pointer;
}

.menu-nav a:hover,
.menu-nav-link:hover {
    opacity: 0.7;
}

.menu-nav-dropdown {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.menu-nav-link {
    position: relative;
}

.menu-nav-dropdown:hover .menu-nav-link::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: white;
}

.services-submenu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1rem;
}

.menu-nav-dropdown:hover .services-submenu {
    display: flex;
}

.services-submenu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: opacity 0.2s;
    line-height: 1.4;
    white-space: nowrap;
}

.services-submenu a:hover {
    opacity: 0.7;
}

.menu-footer {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
}

.menu-footer a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Main Content */
.main-content {
    margin-left: 80px;
    min-height: 100vh;
    transition: filter 0.4s ease;
}

.main-content.menu-open {
    filter: blur(8px);
}

/* Top Navigation - Hidden */
.top-nav {
    display: none;
}

/* Social Icons - Hidden */
.social-icons {
    display: none;
}

/* Hero Section */
.hero-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: calc(100vh - 8rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-content {
    max-width: 800px;
    margin-top: 8rem;
}

.hero-greeting {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.6;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

.text-red {
    color: var(--red-primary);
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-clients {
    width: 100%;
}

.btn-red {
    display: inline-block;
    background: var(--red-primary);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-red:hover {
    background: var(--red-dark);
}

.clients-title {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.clients-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients-track {
    display: flex;
    gap: 6rem;
    align-items: center;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.clients-track img {
    height: 80px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s;
    flex-shrink: 0;
}

.clients-track img:hover {
    opacity: 1;
}

.clients-track img.logo-invert {
    filter: brightness(0) invert(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-20%);
    }
}

/* Container */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Services Section */
.services-main {
    padding: 6rem 0;
    background: var(--bg-white);
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-modern {
    background: var(--bg-pink);
    padding: 3rem 2rem;
    border-radius: 0;
    transition: transform 0.3s;
}

.service-modern:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-modern p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Services Section */
.services-section {
    min-height: 100vh;
    padding: 6rem 0;
    background: var(--bg-white);
    display: flex;
    align-items: center;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.services-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
}

.rotating-text {
    display: inline-block;
    min-width: 250px;
    text-align: left;
    position: relative;
}

.rotating-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.services-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

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

.industry-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s;
}

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

.industry-card.pink {
    background: #fef1f3;
}

.industry-card.gray {
    background: #e8e8e8;
}

.industry-card.red {
    background: #f8d7da;
}

.industry-card.light-gray {
    background: #f5f5f5;
}

.industry-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    flex-grow: 1;
}

.card-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block;
    transition: color 0.2s;
}

.card-link:hover {
    color: var(--red-primary);
}

/* About Section */
.about-main {
    min-height: 100vh;
    padding: 6rem 0;
    background: var(--bg-light);
    display: flex;
    align-items: center;
}

.section-label-gray {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-large-text {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 4rem;
    line-height: 1.1;
}

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

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--red-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.05em;
}

.about-text-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text-block p {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.portfolio-item {
    background: var(--bg-light);
    overflow: hidden;
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    position: relative;
    overflow: hidden;
}

.portfolio-ecommerce {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.portfolio-healthcare {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.portfolio-cloud {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.portfolio-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.portfolio-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stat-badge {
    background: var(--bg-pink);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--text-dark);
    color: white;
}

.section-label-white {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Technology Stack Section */
.tech-stack-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge {
    background: white;
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}

.tech-badge:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contact Section */
.contact-main {
    min-height: 100vh;
    padding: 6rem 0;
    background: var(--red-primary);
    color: white;
    display: flex;
    align-items: center;
}

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

.contact-info {
    text-align: left;
}

.section-heading-white {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.contact-item p,
.contact-item a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.5;
}

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

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--red-dark);
    color: white;
}

.btn-white-solid {
    background: white;
    color: var(--red-primary);
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-white-solid:hover {
    background: transparent;
    color: white;
}

.btn-white-outline {
    display: inline-block;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-white-outline:hover {
    background: white;
    color: var(--red-primary);
}

/* Service Subpages */
.service-hero {
    min-height: 70vh;
    padding: 6rem 0;
    background: var(--bg-light);
    display: flex;
    align-items: center;
}

.service-intro {
    margin-bottom: 4rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--red-primary);
}

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 600;
}

.service-content-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.service-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    position: sticky;
    top: 6rem;
}

.service-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-hero-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.service-hero-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.service-details {
    padding: 4rem 0 6rem 0;
    background: var(--bg-white);
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-detail-card {
    background: var(--bg-light);
    padding: 0;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

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

.service-detail-card.pink {
    background: #fef1f3;
}

.service-detail-card.gray {
    background: #e8e8e8;
}

.service-detail-card.light-gray {
    background: #f5f5f5;
}

.service-card-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-detail-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-detail-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    flex-grow: 1;
}

.service-cta {
    padding: 6rem 0;
    background: var(--red-primary);
    text-align: center;
    color: white;
}

/* Footer */
.footer-main {
    padding: 2rem 0;
    background: var(--text-dark);
    color: white;
    text-align: center;
}

.footer-main p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: 60px;
        left: 0;
        top: 0;
        bottom: auto;
    }

    .sidebar-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        height: 100%;
    }

    .sidebar-logo {
        margin-bottom: 0;
    }

    .sidebar-logo img {
        width: 35px;
        filter: none;
    }

    .sidebar-brand {
        display: none;
    }

    .menu-toggle {
        order: 2;
    }

    .menu-toggle span {
        background: white;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-content {
        margin-left: 0;
        margin-top: 60px;
    }

    .hero-main {
        padding: 2rem 2rem 2rem 2rem;
        min-height: 90vh;
    }

    .hero-content {
        margin-top: 2rem;
    }

    .clients-track img {
        height: 50px;
    }

    .container-wide {
        padding: 0 2rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid-industries {
        grid-template-columns: 1fr;
    }

    .fullscreen-menu {
        left: 0;
        top: 60px;
        width: 100%;
        max-width: none;
        height: calc(100vh - 60px);
        transform: translateY(-100%);
        padding: 0;
        overflow-y: auto;
        transition: transform 0.3s ease;
        background: var(--red-primary);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .fullscreen-menu.active {
        transform: translateY(0);
        padding: 1.5rem 2rem;
    }

    .menu-close {
        display: none;
    }

    .menu-nav {
        margin-top: 0;
        gap: 0;
        padding-left: 0;
    }

    .menu-nav a,
    .menu-nav-link {
        font-size: 1.1rem;
        color: white;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-nav a:hover,
    .menu-nav-link:hover {
        opacity: 0.7;
    }

    .menu-nav-dropdown {
        flex-direction: column;
        gap: 0;
    }

    .menu-nav-dropdown:hover .menu-nav-link::after {
        display: none;
    }

    /* Hide Services submenu dropdown on mobile */
    .services-submenu {
        display: none !important;
    }

    .service-content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-hero-title {
        position: static;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
    }

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

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

    .tech-categories {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
