
        :root {
            --ffd-green: #8c9825;
            --ffd-green-dark: #68731a;
            --ffd-brown: #4b3c32;
            --ffd-cream: #f7f5ed;
            --ffd-white: #ffffff;
            --ffd-text: #2e2e2e;
            --ffd-border: #dedbcf;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "Didact Gothic", sans-serif;
            background-color: var(--ffd-white);
            color: var(--ffd-text);
        }

        a {
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: 1120px;
            margin: 0 auto;
        }

        /* Λογότυπο */
        .logo-container {
            padding: 40px 20px;
            text-align: center;
            background-color: var(--ffd-white);
        }

        .logo-container img {
    display: block;
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

        /* Banner υπό κατασκευή */
        .status-banner {
            position: relative;
            overflow: hidden;
            padding: 75px 20px;
            text-align: center;
            color: var(--ffd-white);
            background: linear-gradient(
                135deg,
                var(--ffd-green-dark),
                var(--ffd-green)
            );
        }

        .status-banner::before,
        .status-banner::after {
            position: absolute;
            content: "";
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.08);
        }

        .status-banner::before {
            width: 280px;
            height: 280px;
            top: -170px;
            left: -90px;
        }

        .status-banner::after {
            width: 350px;
            height: 350px;
            right: -180px;
            bottom: -240px;
        }

        .banner-content {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 950px;
            margin: 0 auto;
        }

        .paw-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 76px;
            height: 76px;
            margin-bottom: 25px;
            border: 2px solid rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            font-size: 32px;
        }

        .status-banner h1 {
            margin: 0 0 20px;
            font-size: clamp(2rem, 5vw, 3.4rem);
            font-weight: 700;
            line-height: 1.2;
        }

        .status-banner h2 {
            margin: 0;
            font-family: "Caveat", cursive;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
        }

        /* Επικοινωνία */
        .contact-section {
            padding: 70px 20px;
            background-color: var(--ffd-cream);
        }

        .section-heading {
            margin-bottom: 45px;
            text-align: center;
        }

        .section-heading .small-title {
            display: block;
            margin-bottom: 8px;
            color: var(--ffd-green-dark);
            font-family: "Caveat", cursive;
            font-size: 1.9rem;
            font-weight: 700;
        }

        .section-heading h2 {
            margin: 0 0 15px;
            color: var(--ffd-brown);
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-heading p {
            max-width: 760px;
            margin: 0 auto;
            font-size: 1.15rem;
            line-height: 1.7;
        }

        /* Κάρτες επικοινωνίας */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 25px;
        }

        .contact-card {
            padding: 35px 25px;
            text-align: center;
            background-color: var(--ffd-white);
            border: 1px solid var(--ffd-border);
            border-radius: 14px;
            box-shadow: 0 12px 30px rgba(75, 60, 50, 0.07);
            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            border-color: var(--ffd-green);
            box-shadow: 0 18px 38px rgba(75, 60, 50, 0.12);
        }

        .contact-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 68px;
            height: 68px;
            margin-bottom: 22px;
            color: var(--ffd-white);
            background-color: var(--ffd-green);
            border-radius: 50%;
            font-size: 26px;
        }

        .contact-card h3 {
            margin: 0 0 15px;
            color: var(--ffd-brown);
            font-size: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-card p {
            margin: 7px 0;
            font-size: 1.1rem;
            line-height: 1.55;
        }

        .contact-card a {
            font-weight: 700;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .contact-card a:hover {
            color: var(--ffd-green-dark);
        }

        /* Χάρτης */
        .map-section {
            padding: 0 20px 70px;
            background-color: var(--ffd-cream);
        }

        .map-container {
            overflow: hidden;
            border: 3px solid var(--ffd-white);
            border-radius: 14px;
            box-shadow: 0 12px 30px rgba(75, 60, 50, 0.1);
        }

        .map-container iframe {
            display: block;
            width: 100%;
            height: 430px;
            border: 0;
        }

        /* Social Media */
        .social-section {
            padding: 55px 20px;
            text-align: center;
            color: var(--ffd-white);
            background-color: var(--ffd-brown);
        }

        .social-section h2 {
            margin: 0 0 10px;
            font-family: "Caveat", cursive;
            font-size: 2.3rem;
        }

        .social-section p {
            margin: 0 0 25px;
            font-size: 1.1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            color: var(--ffd-white);
            border: 2px solid rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            font-size: 22px;
            text-decoration: none;
            transition:
                color 0.25s ease,
                background-color 0.25s ease,
                transform 0.25s ease;
        }

        .social-links a:hover {
            color: var(--ffd-brown);
            background-color: var(--ffd-white);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            padding: 28px 20px;
            text-align: center;
            background-color: #392e27;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
        }

        footer p {
            margin: 0;
        }

        /* Tablet */
        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .contact-card {
                width: 100%;
                max-width: 600px;
                margin: 0 auto;
            }
        }

        /* Κινητό */
        @media (max-width: 576px) {
            .logo-container {
                padding: 30px 20px;
            }

            .logo-container img {
                max-width: 200px;
            }

            .status-banner {
                padding: 60px 20px;
            }

            .paw-icon {
                width: 66px;
                height: 66px;
                font-size: 27px;
            }

            .contact-section {
                padding-top: 55px;
                padding-bottom: 55px;
            }

            .map-container iframe {
                height: 350px;
            }
        }
 