    .container {
        padding: 80px 20px;
        min-height: 100vh;
    }

    .wrapper {
        max-width: 1360px;
        margin: 0 auto;
    }

    .header {
        text-align: center;
        margin-bottom: 60px;
    }

    .subtitle {
        color: #cb9c3a;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 20px;
        display: block;
    }

    .title {
        font-size: 48px;
        font-weight: 700;
        color: #333333;
        margin: 0;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

    .title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background-color: #cb9c3a;
        border-radius: 2px;
    }

    .content {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    /* Kontakt sekcija stilovi */
    .contact-section {
        background: linear-gradient(135deg, #042640 0%, #053149 100%);
        padding: 60px 40px;
        text-align: center;
        color: white;
        position: relative;
    }

    .contact-section::before {
        content: '';
        position: absolute;
        left: 0;
        top: 20px;
        bottom: 20px;
        width: 5px;
        background: #cb9c3a;
        border-radius: 0 3px 3px 0;
    }

    .contact-section h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
        color: white;
    }

    .underline {
        display: inline-block;
        width: 100px;
        height: 4px;
        background-color: #cb9c3a;
        border-radius: 2px;
        margin-bottom: 50px;
    }

    .contact-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 30px 20px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        backdrop-filter: blur(10px);
    }

    .contact-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
        border-color: #cb9c3a;
        box-shadow: 0 15px 35px rgba(203, 156, 58, 0.3);
    }

    .contact-card a {
        text-decoration: none;
        color: white;
        display: block;
    }

    .contact-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin: 0 auto 20px;
        transition: all 0.3s ease;
    }

    .viber-icon {
        background: linear-gradient(135deg, #7360F2 0%, #5d4ed4 100%);
    }

    .whatsapp-icon {
        background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
    }

    .phone-icon {
        background: linear-gradient(135deg, #cb9c3a 0%, #b8893c 100%);
    }

    .contact-card:hover .contact-icon {
        transform: scale(1.1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    .contact-card p {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .contact-card small {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .dot {
        width: 6px;
        height: 6px;
        background-color: #cb9c3a;
        border-radius: 50%;
        display: inline-block;
    }

    .contact-details {
        margin-top: 40px;
    }

    .contact-info-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 30px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-info-card h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #cb9c3a;
    }

    .contact-info-card p {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 1.5;
    }

    .contact-info-card a {
        color: #cb9c3a;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 2px solid transparent;
        transition: border-color 0.3s ease;
    }

    .contact-info-card a:hover {
        border-bottom-color: #cb9c3a;
    }

    /* Intro sekcija */
    .intro-section {
        background: white;
        padding: 40px;
        border-bottom: 1px solid #f0f0f0;
    }

    .intro-title {
        font-size: 28px;
        font-weight: 700;
        color: #333333;
        margin-bottom: 25px;
        position: relative;
        padding-left: 20px;
    }

    .intro-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 30px;
        background: #cb9c3a;
        border-radius: 3px;
    }

    .intro-text {
        font-size: 16px;
        color: #555555;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    /* Responsive dizajn */
    @media (max-width: 768px) {
        .container {
            padding: 60px 15px;
        }

        .title {
            font-size: 36px;
        }

        .contact-section {
            padding: 40px 25px;
        }

        .contact-section h2 {
            font-size: 28px;
        }

        .contact-options {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .contact-card {
            padding: 25px 15px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
        }

        .contact-icon svg {
            width: 15px;
            height: 15px;
        }
    }
.viber-icon svg {
    max-width: 50%;
}
    @media (max-width: 480px) {
        .title {
            font-size: 28px;
        }

        .intro-section {
            padding: 25px 20px;
        }

        .intro-title {
            font-size: 20px;
            padding-left: 15px;
        }

        .intro-title::before {
            width: 4px;
            height: 20px;
        }

        .contact-section {
            padding: 30px 20px;
        }

        .contact-section h2 {
            font-size: 24px;
        }

        .contact-info-card {
            padding: 20px;
        }
    }