section.blog_post .row-fluid{margin-bottom:2rem}section.blog_post img{height:auto;width:100%}section.blog_post .span8{margin-bottom:2rem}section.blog_post h1{margin-bottom:20px}section.blog_post h3{margin-bottom:32px}section.blog_listening h1{color:#fff;margin-bottom:1.2rem}section.blog_listening .blog_cards_card{display:grid;flex-wrap:nowrap;gap:1.4rem;grid-template-columns:1fr;justify-content:space-between}section.blog_listening .blog_cards_card a{background:#fff;border-radius:12px;color:#000}section.blog_listening .blog_cards_card a:hover{background:#55f68b}section.blog_listening .blog_cards_card__image{background-position:50%;background-size:cover;border-radius:12px 12px 0 0;height:220px;margin-bottom:1rem;width:100%}section.blog_listening .blog_cards_card__text{padding:0 1rem .5rem;width:100%}section.blog_listening .blog_cards_card__text h3,section.blog_listening .blog_cards_card__text p{font-size:.9rem;margin-bottom:.5rem}@media (min-width:600px){section.blog_listening .blog_cards_card{grid-template-columns:1fr 1fr}}@media (min-width:1200px){section.blog_listening .blog_cards_card{grid-template-columns:1fr 1fr 1fr 1fr}section.blog_listening .blog_cards_card section{margin-bottom:0}}section.section_aside_more{background-color:#d0e0ff;background-color:#b6fbcd;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' fill='none' viewBox='0 0 80 80'%3E%3Cpath fill='%23fff' stroke='%23252525' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M18 35.626 62.866 18l-8.813 43.264z'/%3E%3Cpath fill='%23fff' d='m62.866 18-34.45 25.032v17.43l11.216-9.613'/%3E%3Cpath stroke='%23252525' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m62.866 18-34.45 25.032m0 0v17.43l11.216-9.613z'/%3E%3Ccircle cx='6.5' cy='44.5' r='2.75' fill='%2385F9AB' stroke='%23252525' stroke-width='1.5'/%3E%3Ccircle cx='29' cy='10' r='4.25' fill='%2385F9AB' stroke='%23252525' stroke-width='1.5'/%3E%3C/svg%3E");background-position:20px;background-repeat:no-repeat;border-radius:10px;padding:40px 30px 40px 120px}section.section_aside_more h3{font-family:euclid_circular_bold;margin:0 0 .2rem}section.section_aside_more p{margin:0 0 1rem}section.section_aside_more a,.cta-button{background:#55f68b;transition: all 0.3s ease; border-radius:24px;color:#000;font-family:euclid_circular_semibold,sans-serif;padding:6px 22px}section.section_aside_more a:hover,.cta-button:hover{background:#000;color:#55f68b}

 /* Cookie Banner Styles */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-top: 3px solid #4ade80;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
            padding: 25px;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.4s ease-in-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .cookie-text {
            flex: 1;
            color: #333;
            font-size: 1rem;
            line-height: 1.5;
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .cookie-btn.accept {
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: white;
            box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
        }

        .cookie-btn.accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
        }

        .cookie-btn.settings {
            background: transparent;
            color: #22c55e;
            border: 2px solid #22c55e;
        }

        .cookie-btn.settings:hover {
            background: #22c55e;
            color: white;
            transform: translateY(-2px);
        }

          @media (max-width: 768px) {


            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }

            .cookie-btn {
                flex: 1;
                min-width: 120px;
            }
        }

          .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 5% 80px;
        }

         .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-form h2 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background-color: #fafafa;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4ade80;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
        }

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

        .form-group select {
            cursor: pointer;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 20px;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin: 0;
            transform: scale(1.2);
            accent-color: #4ade80;
        }

        .checkbox-group label {
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.5;
            color: #666;
        }

        .submit-btn {
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .success-message {
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-top: 20px;
            display: none;
            font-weight: 500;
        }

        @media (max-width: 768px) {
           
            .contact-info,
            .contact-form {
                padding: 30px 25px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .contact-item {
                padding: 10px;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
                margin-right: 15px;
            }

            .contact-icon::before {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width:1200px){
            .container-1432 {
              padding-left: 20px;
              padding-right: 20px;
            }
        }