* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a2b4d;
    --accent: #00e5ff;
    --background: #0f1620;
    --highlight: #c8d4e0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--highlight);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syncopate', sans-serif;
    color: var(--accent);
    font-weight: 700;
}

header {
    background-color: var(--primary);
    padding: 1rem 2rem;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--highlight);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent);
    margin: 3px 0;
    transition: 0.3s;
}

section {
    margin: 2rem 0;
    padding: 4rem 0;
}

section:first-of-type:not(.hero) {
    padding-top: 6rem;
}

.hero {
    margin-top: 0;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(5deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
    animation: glow-pulse 3s ease-in-out infinite;
    line-height: 1.1;
}

@keyframes glow-pulse {
    0%, 100% { 
        text-shadow: 0 0 30px rgba(0, 229, 255, 0.4), 0 0 60px rgba(0, 229, 255, 0.2);
    }
    50% { 
        text-shadow: 0 0 40px rgba(0, 229, 255, 0.6), 0 0 80px rgba(0, 229, 255, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--highlight);
    line-height: 1.8;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 229, 255, 0.3);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #0099cc);
    color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.2);
}

.hero-subpage {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-subpage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-subpage-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subpage h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
    animation: glow-pulse 3s ease-in-out infinite;
    line-height: 1.2;
}

.hero-subpage p {
    font-size: 1.25rem;
    color: var(--highlight);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hero-subpage p:last-of-type {
    margin-bottom: 2rem;
}

.page-section-centered {
    text-align: center;
    margin: 3rem 0;
}

.page-section-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.page-section-centered > p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--highlight);
}

.page-section-image-top {
    margin: 3rem 0;
}

.page-text-content {
    margin-top: 2rem;
}

.page-text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.page-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--highlight);
}

.page-section-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.page-section-alt-reverse {
    grid-template-columns: 1fr 1fr;
}

.page-section-alt-reverse .page-text-content {
    order: 2;
}

.page-section-alt-reverse .page-image-wrapper {
    order: 1;
}

.page-section-alt .page-text-content {
    margin-top: 0;
}

.page-section-alt .page-text-content h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.page-section-alt .page-text-content p {
    text-align: left;
    margin: 0;
}

.page-section-gallery {
    text-align: center;
    margin: 3rem 0;
}

.page-section-gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.page-section-gallery > p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--highlight);
}

.page-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.2);
}

.page-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.page-image-wrapper:hover img {
    transform: scale(1.03);
}

.page-image-large {
    max-width: 800px;
    border: 2px solid rgba(0, 229, 255, 0.2);
}

.page-image-tech {
    max-width: 100%;
    border: 2px solid rgba(0, 229, 255, 0.15);
}

.page-image-alt {
    max-width: 700px;
    border: 2px solid rgba(0, 229, 255, 0.25);
}

.page-image-gallery {
    max-width: 900px;
    border: 3px solid rgba(0, 229, 255, 0.3);
}

.contact-info-section {
    margin: 3rem 0;
    text-align: center;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(26, 43, 77, 0.5);
    border-radius: 15px;
    border: 2px solid rgba(0, 229, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
    background: rgba(26, 43, 77, 0.7);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--accent);
    border: 2px solid rgba(0, 229, 255, 0.3);
}

.contact-info-item:hover .contact-icon {
    background: rgba(0, 229, 255, 0.2);
    border-color: rgba(0, 229, 255, 0.5);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-details {
    text-align: center;
}

.contact-details h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: 'Syncopate', sans-serif;
}

.contact-details p {
    color: var(--highlight);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent), #0099cc);
    color: var(--primary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
a{
    color: #ffffff;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section:not(.hero) .container > h2:not(.feature-content h2) {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

section:not(.hero) .container > .feature-grid ~ h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

section:not(.hero) .container > p:first-of-type:not(.feature-content p) {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: var(--highlight);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0;
}

.feature-grid-reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-grid-reverse .feature-content {
    order: 2;
}

.feature-grid-reverse .feature-image-wrapper {
    order: 1;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-content h2 {
    text-align: left;
    margin-bottom: 0;
}

.feature-content p {
    text-align: left;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 229, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image-wrapper.feature-image-small {
    max-width: 500px;
}

.feature-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.3);
    border-color: rgba(0, 229, 255, 0.4);
}

.feature-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-image-wrapper:hover img {
    transform: scale(1.05);
}

.showcase-wrapper {
    position: relative;
    margin: 3rem 0;
}

.innovation-showcase {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    min-height: 450px;
}

.showcase-item {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(50px);
    position: absolute;
    width: 100%;
}

.showcase-item.active {
    opacity: 1;
    position: relative;
    transform: translateX(0);
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 229, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-image-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.4);
}

.showcase-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-item h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.showcase-item p {
    color: var(--highlight);
    max-width: 600px;
    line-height: 1.6;
}

.showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 43, 77, 0.9);
    border: 2px solid var(--accent);
    color: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.showcase-arrow:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.showcase-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.showcase-arrow-left {
    left: -25px;
}

.showcase-arrow-right {
    right: -25px;
}

.showcase-arrow svg {
    width: 24px;
    height: 24px;
}

.reveal-text {
    display: inline-block;
    animation: weave-reveal 1s ease-out;
}

@keyframes weave-reveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    background-color: var(--primary);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p, .footer-column a {
    color: var(--highlight);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(200, 212, 224, 0.2);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--primary);
    border: 2px solid var(--accent);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-popup.hidden {
    display: none;
}

.privacy-popup p {
    margin-bottom: 1rem;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.popup-buttons button {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.btn-accept {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-decline {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent) !important;
}

.popup-buttons button:hover {
    transform: scale(1.05);
}

form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

form input, form textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary);
    border: 1px solid var(--accent);
    border-radius: 5px;
    color: var(--highlight);
    font-family: inherit;
}

form textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.legal-page {
    padding-left: 1rem;
    padding-right: 1rem;
}

.legal-page h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    body {
        hyphens: auto;
    }
    
    .logo {
        font-size: 0.8rem;
    }
    h3{
        font-size: 0.6rem !important;
    }
    h2{
        font-size: 0.7rem !important;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }
    
    nav ul.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        min-height: auto;
        padding: 4rem 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        max-width: 100%;
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    section:not(.hero) {
        padding: 2.5rem 0;
    }
    
    section:not(.hero) .container > h2 {
        font-size: 2rem;
    }
    
    section:not(.hero) .container > p:first-of-type {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .page-section-alt {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-section-alt .page-text-content h2 {
        text-align: center;
    }
    
    .page-section-alt .page-text-content p {
        text-align: center;
    }
    
    .page-text-content h2 {
        font-size: 2rem;
    }
    
    .page-text-content p {
        font-size: 1rem;
    }
    
    .page-section-centered h2 {
        font-size: 2rem;
    }
    
    .page-section-gallery h2 {
        font-size: 2rem;
    }
    
    .showcase-wrapper {
        margin: 2rem 0;
        padding: 0 3rem;
    }
    
    .innovation-showcase {
        min-height: 400px;
    }
    
    .showcase-arrow {
        width: 40px;
        height: 40px;
    }
    
    .showcase-arrow-left {
        left: 10px;
    }
    
    .showcase-arrow-right {
        right: 10px;
    }
    
    .showcase-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-image-wrapper {
        margin: 1.5rem auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 1rem;
    }
    
    header {
        padding: 1rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-subpage {
        padding: 3rem 1rem;
        min-height: 35vh;
    }
    
    .hero-subpage h1 {
        font-size: 2rem;
    }
    
    .hero-subpage p {
        font-size: 0.95rem;
    }
    
    .hero-subpage h1 {
        font-size: 1.75rem;
    }
    
    section:not(.hero) .container > h2 {
        font-size: 1.5rem;
    }
    
    .page-section-centered h2,
    .page-section-gallery h2,
    .page-text-content h2,
    .page-section-alt .page-text-content h2,
    .contact-info-section h2,
    .feature-content h2 {
        font-size: 1.5rem;
    }
    
    .page-section-centered > p,
    .page-section-gallery > p,
    .page-text-content p,
    .page-section-alt .page-text-content p,
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .showcase-wrapper {
        padding: 0 1.5rem;
    }
    
    .innovation-showcase {
        min-height: 350px;
    }
    
    .showcase-arrow {
        width: 32px;
        height: 32px;
    }
    
    .showcase-arrow-left {
        left: 5px;
    }
    
    .showcase-arrow-right {
        right: 5px;
    }
    
    .showcase-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .showcase-item h3 {
        font-size: 1.1rem;
    }
    
    .showcase-item p {
        font-size: 0.85rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1.25rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section:not(.hero) {
        padding: 2rem 0;
    }
    
    .page-section-centered,
    .page-section-gallery,
    .page-section-image-top,
    .page-section-alt {
        margin: 2rem 0;
    }
    
    .contact-info-section {
        margin: 2rem 0;
    }
}
