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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigácia */
.navbar {
    background-color: white;
    padding: 1.2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4a574;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #d4a574;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4a574;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: #dfb57b;
    padding: 10rem 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Tlačidlá */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 10;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-color: #d4a574;
    color: white;
    border-color: #d4a574;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: #d4a574;
    color: white;
    border-color: #d4a574;
}

.btn-primary:hover {
    background-color: transparent;
    color: #d4a574;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #fafaf8;
}

.about h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 300;
    text-align: center;
}

.about-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 2px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
    color: #2c3e50;
}

.about-content p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid #d4a574;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.expertise-number {
    font-size: 3rem;
    color: #d4a574;
    font-weight: 700;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.expertise-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

.services h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 300;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-showcase-item {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 4px solid #d4a574;
}

.service-showcase-item:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.service-showcase-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 3px solid #d4a574;
    padding-bottom: 0.5rem;
}

.service-showcase-item p {
    color: #555;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #fafaf8;
}

.contact h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 300;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-box {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    background-color: #fafaf8;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    background-color: #fffbf5;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    color: #999;
    font-size: 0.85rem;
}

.contact-info-box {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid #d4a574;
    padding-bottom: 0.5rem;
}

.info-text {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.info-text a {
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
}

.info-text a:hover {
    text-decoration: underline;
}

/* GDPR Section */
.gdpr {
    padding: 5rem 0;
    background: white
}

.gdpr h2 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 300;
}

.gdpr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.gdpr-item {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #d4a574;
}

.gdpr-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.gdpr-item p {
    color: #555;
}

.gdpr-details {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.gdpr-details h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.gdpr-details p {
    color: #555;
    line-height: 1.8;
}

.gdpr-details strong {
    color: #2c3e50;
}

.gdpr-details p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.gdpr-details strong {
    color: #333;
}

/* Form Status Messages */
.form-status {
    margin-bottom: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 2px;
    margin-bottom: 1rem;
    animation: slideIn 0.3s ease-in;
}

.form-message-success {
    background-color: #d4f1d4;
    color: #2d5f2d;
    border-left: 4px solid #4caf50;
}

.form-message-error {
    background-color: #f8d7d7;
    color: #7a3030;
    border-left: 4px solid #f44336;
    white-space: pre-wrap;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: #dfb57b;
    color: white;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.95rem;
}

.footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
    color: white;
}

/* Mediácia - Úvod */
.mediation-intro {
    background: #e8d5c4;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #d4a574;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.mediation-intro p {
    margin: 0;
}

/* Výhody mediácie */
.benefits-list {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 2rem;
}

.benefits-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-check {
    color: #d4a574;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-content h4 {
    color: #2c3e50;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.benefit-content p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Cenník */
.pricing {
    background: white;
    padding: 4rem 0;
    margin-top: 0;
}

.pricing h2 {
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.pricing-section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pricing-section h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.price-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.price-row:last-child {
    border-bottom: none;
}

.price-desc {
    flex-grow: 1;
    color: #2c3e50;
    font-weight: 500;
}

.price-amount {
    color: #d4a574;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .expertise-grid,
    .services-showcase,
    .gdpr-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .about-top {
        grid-template-columns: 1fr;
    }

    .services-showcase,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .gdpr-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-section {
        grid-template-columns: 1fr;
    }
}
