/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header & Navigation */
header {
    background: #13181f;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 0.5rem;
}

.company-logo {
    width: 80px;
    height: auto;
    margin-top: 0.5rem;
}

.logo .tagline {
    font-size: 0.9rem;
    color: #d32f2f;
    font-weight: 300;
    margin-top: -5px;
}

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

.nav-links a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e57373;
}

.nav-links a[href="#about"],
.nav-links a[href="#contact"] {
    color: white;
}

.nav-links a[href="#about"]:hover,
.nav-links a[href="#contact"]:hover {
    color: #ddd;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 70px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d32f2f;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    color: #ddd;
    white-space: nowrap;
}

.cta-button {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.cta-button:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

.book-image {
    width: 120px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.profile-image {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border: 5px solid #d32f2f;
}

.about-content > p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: center;
    line-height: 1.8;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-prop {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-top: 4px solid #d32f2f;
}

.value-prop h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-prop p {
    color: #666;
}

.clients-section {
    margin-top: 4rem;
    text-align: center;
    overflow: hidden;
}

.clients-section h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 2rem;
    font-weight: 600;
}

.client-logos {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.client-logos:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    height: 60px;
    width: auto;
    min-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Thought Leadership Section */
.thought-leadership {
    position: relative;
    padding: 300px 0;
    overflow: hidden;
    min-height: 800px;
}

.slideshow-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideshow 156s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }
.slide:nth-child(4) { animation-delay: 18s; }
.slide:nth-child(5) { animation-delay: 24s; }
.slide:nth-child(6) { animation-delay: 30s; }
.slide:nth-child(7) { animation-delay: 36s; }
.slide:nth-child(8) { animation-delay: 42s; }
.slide:nth-child(9) { animation-delay: 48s; }
.slide:nth-child(10) { animation-delay: 54s; }
.slide:nth-child(11) { animation-delay: 60s; }
.slide:nth-child(12) { animation-delay: 66s; }
.slide:nth-child(13) { animation-delay: 72s; }
.slide:nth-child(14) { animation-delay: 78s; }
.slide:nth-child(15) { animation-delay: 84s; }
.slide:nth-child(16) { animation-delay: 90s; }
.slide:nth-child(17) { animation-delay: 96s; }
.slide:nth-child(18) { animation-delay: 102s; }
.slide:nth-child(19) { animation-delay: 108s; }
.slide:nth-child(20) { animation-delay: 114s; }
.slide:nth-child(21) { animation-delay: 120s; }
.slide:nth-child(22) { animation-delay: 126s; }
.slide:nth-child(23) { animation-delay: 132s; }
.slide:nth-child(24) { animation-delay: 138s; }
.slide:nth-child(25) { animation-delay: 144s; }
.slide:nth-child(26) { animation-delay: 150s; }

@keyframes slideshow {
    0%, 4% { opacity: 1; }
    4.01%, 100% { opacity: 0; }
}

.thought-leadership .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.thought-leadership .container {
    position: relative;
    z-index: 2;
}

.thought-leadership-content {
    text-align: center;
    color: white;
}

.thought-leadership-content .section-title {
    color: #d32f2f;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.thought-leadership-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Videos Section */
.videos {
    padding: 80px 0;
    background: #e8e9ea;
}

.videos .section-title {
    color: #d32f2f;
}

.video-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.video-item {
    display: flex;
    flex-direction: column;
}

.video-title {
    text-align: center;
    font-size: 1.3rem;
    color: #1a1a2e;
    font-weight: 600;
}

.video-link-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-link-box {
    cursor: pointer;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.video-link-box:hover {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background 0.3s ease;
}

.video-link-box:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    padding-bottom: 56.25%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.video-link-box:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-link-text {
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 3;
}

.video-link-text h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.video-link-text p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.4;
}

/* Papers Section */
.papers {
    padding: 80px 0 80px 0;
    padding-top: 0;
    background: #e8e9ea;
}

.papers-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.papers-content a,
.papers-content .paper-text-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 220px;
    min-height: 220px;
}

.papers-content a:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.papers-content a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* Transform Section */
.transform {
    position: relative;
    padding: 300px 0;
    overflow: hidden;
    min-height: 800px;
}

.slideshow-background-transform {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-transform {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideshow-transform 36s infinite;
}

.slide-transform:nth-child(1) { animation-delay: 0s; }
.slide-transform:nth-child(2) { animation-delay: 6s; }
.slide-transform:nth-child(3) { animation-delay: 12s; }
.slide-transform:nth-child(4) { animation-delay: 18s; }
.slide-transform:nth-child(5) { animation-delay: 24s; }
.slide-transform:nth-child(6) { animation-delay: 30s; }

@keyframes slideshow-transform {
    0%, 16.66% { opacity: 1; }
    16.67%, 100% { opacity: 0; }
}

.transform .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.transform .container {
    position: relative;
    z-index: 2;
}

.transform-content {
    text-align: center;
    color: white;
}

.transform-content .section-title {
    color: #d32f2f;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.transform-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.contact-boxes {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-box-link {
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.contact-box {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.contact-box h3 {
    color: #1a1a2e;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin: 1.5rem auto 0;
    backdrop-filter: blur(10px);
}

.linkedin-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.linkedin-link svg {
    transition: transform 0.3s ease;
}

.linkedin-link:hover svg {
    transform: scale(1.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255,255,255,0.95);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #d32f2f;
}

.submit-button {
    background: #d32f2f;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: #f5f5f5;
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content p {
    color: #555;
}

.newsletter-btn {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.newsletter-btn:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

/* Footer */
footer {
    background: #1a1a2e;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    color: #aaa;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #13181f;
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-text h3 {
    color: #d32f2f;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-text p {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

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

.cookie-accept {
    background: #d32f2f;
    color: white;
}

.cookie-accept:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.4);
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 2px solid #666;
}

.cookie-decline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #999;
}

.cookie-manage {
    background: transparent;
    color: #d32f2f;
    border: 2px solid #d32f2f;
}

.cookie-manage:hover {
    background: rgba(233, 69, 96, 0.1);
    border-color: #e57373;
}

/* Cookie Preferences Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: slideDown 0.3s ease-out;
}

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

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #d32f2f;
}

.cookie-modal-header h2 {
    color: #1a1a2e;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: #f0f0f0;
    color: #d32f2f;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    color: #1a1a2e;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.cookie-category p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: #d32f2f;
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
    background-color: #d32f2f;
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-radius: 0 0 15px 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .company-logo {
        width: 60px;
    }

    .nav-links {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.9rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        white-space: normal;
        font-size: 1rem;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .value-props {
        grid-template-columns: 1fr;
    }

    .thought-leadership {
        padding: 150px 0;
        min-height: 400px;
    }

    .thought-leadership-content .section-title {
        font-size: 2rem;
    }

    .thought-leadership-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .transform {
        padding: 150px 0;
        min-height: 400px;
    }

    .transform-content .section-title {
        font-size: 2rem;
    }

    .transform-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .contact-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .contact-content p br {
        display: none;
    }

    .contact-boxes {
        flex-direction: column;
        gap: 1.5rem;
    }

    .linkedin-link {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .papers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .client-logos {
        gap: 2rem;
    }

    .client-logo {
        height: 40px;
        min-width: 80px;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .about-content > p {
        font-size: 1rem;
    }

    .video-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-title {
        font-size: 1.2rem;
    }

    .video-link-text h4 {
        font-size: 1.3rem;
    }

    .video-link-text p {
        font-size: 0.9rem;
    }

    .newsletter-content p {
        font-size: 1.1rem;
    }

    .newsletter-btn {
        font-size: 1.1rem;
        padding: 16px 40px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 0.95rem;
    }

    .company-logo {
        width: 50px;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .thought-leadership {
        padding: 100px 0;
        min-height: 300px;
    }

    .thought-leadership-content .section-title {
        font-size: 1.5rem;
    }

    .thought-leadership-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .transform {
        padding: 100px 0;
        min-height: 300px;
    }

    .transform-content .section-title {
        font-size: 1.5rem;
    }

    .transform-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .contact-content p {
        font-size: 1rem;
    }

    .contact-boxes {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-box h3 {
        font-size: 1.5rem;
    }

    .linkedin-link {
        font-size: 0.95rem;
        padding: 10px 18px;
    }

    .client-logo {
        height: 35px;
        min-width: 70px;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .about-content > p {
        font-size: 0.95rem;
    }

    .video-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-title {
        font-size: 1.1rem;
    }

    .video-link-text h4 {
        font-size: 1.2rem;
    }

    .video-link-text p {
        font-size: 0.85rem;
    }

    .video-link-text {
        bottom: 15px;
        left: 20px;
        right: 20px;
    }

    .papers-content p {
        font-size: 1rem !important;
    }

    /* Cookie Banner Responsive */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-text h3 {
        font-size: 1.1rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-modal-header h2 {
        font-size: 1.4rem;
    }

    .cookie-modal-body {
        padding: 1.5rem;
    }

    .cookie-category h4 {
        font-size: 1rem;
    }

    .cookie-category p {
        font-size: 0.85rem;
    }

    .cookie-modal-footer {
        flex-direction: column;
        padding: 1rem 1.5rem;
    }

    .newsletter-content p {
        font-size: 1rem;
    }

    .newsletter-btn {
        font-size: 1rem;
        padding: 14px 35px;
    }
}