
        :root {
            --primary-color: #e26d5c;
            --secondary-color: #ffe1a8;
            --light-color: #e2eafc;
            --dark-color: #333;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-color);
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            background-color: transparent !important;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-item {
            margin: 0 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-color);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        
        .btn-cta {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-cta:hover {
            background-color: #c85a4a;
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(226, 125, 92, 0.8), rgba(226, 125, 92, 0.8)), url('https://krecenje.net/wp-content/uploads/2023/06/Priprema-zidova-za-krecenje.webp');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn-primary-custom {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: #ffd588;
            color: var(--dark-color);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
        }
        
        .bg-light-section {
            background-color: var(--light-color);
        }
        
        .bg-secondary-section {
            background-color: var(--secondary-color);
        }
        
        /* About Section */
        .about-image {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Counter Section */
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
        }
        
        .counter-title {
            font-size: 1.1rem;
            color: #666;
        }
        
        /* Why Choose Us */
        .choose-us-item {
            margin-bottom: 30px;
        }
        
        .choose-us-item i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .choose-us-item h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Services Section */
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card-body {
            padding: 20px;
        }
        
        .service-card-title {
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(226, 125, 92, 0.9), rgba(226, 125, 92, 0.9)), url('https://images.pexels.com/photos/259588/pexels-photo-259588.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        /* FAQ Section */
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        /* Testimonials */
        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .testimonial-card .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-card .client-info {
            display: flex;
            align-items: center;
        }
        
        .testimonial-card .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        /* Newsletter */
        .newsletter-section {
            background-color: var(--light-color);
            padding: 80px 0;
        }
        
        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            margin-bottom: 15px;
        }
        
        /* Contact Section */
        .contact-info-item {
            margin-bottom: 20px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
        }
        
        /* Footer */
        footer {
            background-color: #222;
            color: white;
            padding: 70px 0 30px;
        }
        
        footer h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        footer h5:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        footer ul li a:hover {
            color: var(--primary-color);
        }
        
        .footer-newsletter input {
            background-color: #333;
            border: none;
            color: white;
            padding: 10px 15px;
            margin-bottom: 15px;
            border-radius: 4px;
            width: 100%;
        }
        
        .footer-newsletter input::placeholder {
            color: #bbb;
        }
        
        .footer-newsletter button {
            background-color: var(--primary-color);
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .footer-newsletter button:hover {
            background-color: #c85a4a;
        }
        
        .copyright {
            border-top: 1px solid #333;
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
            color: #bbb;
        }
        
        .copyright a {
            color: #bbb;
            text-decoration: none;
        }
        
        .copyright a:hover {
            color: var(--primary-color);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
