* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --accent-color: #3b82f6;
    --accent-gradient: linear-gradient(135deg, #3b82f6, #1d4ed8);
    --accent-gradient-2: linear-gradient(135deg, #6366f1, #8b5cf6);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --background-primary: #ffffff;
    --background-secondary: #f8fafc;
    --background-dark: #0f172a;
    --border-color: #e2e8f0;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-large: 20px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-primary);
    overflow-x: hidden;
    position: relative;
}

.teguh-geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.teguh-geometric-shape {
    position: absolute;
    opacity: 0.03;
    background: var(--accent-gradient);
    border-radius: 50%;
}

.teguh-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
    animation: float 6s ease-in-out infinite;
}

.teguh-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.teguh-shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.teguh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.teguh-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    animation: fadeInUp 0.8s ease-out;
}

.teguh-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.company-logo {
    width: 180px;
    height: 60px;
    background-image: url('../img/logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    animation: scaleIn 1s ease-out;
}

.teguh-nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.teguh-nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.teguh-nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.teguh-nav-link:hover,
.teguh-nav-link.teguh-active {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.teguh-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.teguh-nav-link:hover::after,
.teguh-nav-link.teguh-active::after {
    width: 100%;
}

.teguh-nav-right {
    display: flex;
    align-items: center;
}

.teguh-cta-button {
    background: var(--accent-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    animation: scaleIn 1.2s ease-out;
}

.teguh-cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.teguh-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.teguh-nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 1px;
}

.teguh-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--background-secondary);
    overflow: hidden;
}

.teguh-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
}

.teguh-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.teguh-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.teguh-floating-element {
    position: absolute;
    background: var(--accent-gradient);
    border-radius: 50%;
    opacity: 0.1;
}

.teguh-float-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.teguh-float-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation: float 6s ease-in-out infinite reverse;
}

.teguh-float-3 {
    width: 30px;
    height: 30px;
    bottom: 30%;
    left: 20%;
    animation: float 10s ease-in-out infinite;
}

.teguh-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 120px 0 4rem;
    position: relative;
    z-index: 2;
}

.teguh-hero-text {
    max-width: 600px;
    animation: fadeInLeft 1s ease-out;
}

.teguh-hero-badge {
    display: inline-block;
    background: var(--accent-gradient-2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: slideInFromBottom 0.8s ease-out 0.2s both;
}

.teguh-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.teguh-hero-line {
    display: block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.teguh-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.teguh-hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.teguh-hero-image-container {
    position: relative;
}

.teguh-hero-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    transition: transform 0.3s ease;
}

.teguh-hero-visual:hover img {
    transform: scale(1.02);
}

.teguh-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    border-radius: var(--border-radius-large);
}

.teguh-hero-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    pointer-events: none;
}

.teguh-decoration-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    top: 0;
    right: 0;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.teguh-decoration-line {
    position: absolute;
    width: 80px;
    height: 2px;
    background: var(--accent-gradient);
    bottom: 20px;
    left: 0;
    transform: rotate(-45deg);
    opacity: 0.5;
    animation: pulse 3s ease-in-out infinite;
}

.teguh-section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.teguh-section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.teguh-section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.teguh-prescription-drugs {
    padding: 8rem 0;
    background: var(--background-primary);
}

.teguh-prescription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.teguh-prescription-card {
    background: var(--background-primary);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
}

.teguh-prescription-card:nth-child(1) {
    animation-delay: 0.2s;
}

.teguh-prescription-card:nth-child(2) {
    animation-delay: 0.4s;
}

.teguh-prescription-card:nth-child(3) {
    animation-delay: 0.6s;
}

.teguh-prescription-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.teguh-prescription-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.teguh-prescription-card:hover::before {
    transform: scaleX(1);
}

.teguh-prescription-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.teguh-prescription-card:hover .teguh-prescription-icon {
    transform: scale(1.1);
}

.teguh-prescription-icon img {
    width: 80px;
    height: 80px;
}

.teguh-prescription-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.teguh-prescription-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.teguh-feature-list {
    list-style: none;
}

.teguh-feature-list li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.teguh-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.teguh-otc-drugs {
    padding: 8rem 0;
    background: var(--background-secondary);
}

.teguh-otc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.teguh-otc-category {
    background: var(--background-primary);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    animation: scaleIn 0.8s ease-out;
}

.teguh-otc-category:nth-child(1) {
    animation-delay: 0.2s;
}

.teguh-otc-category:nth-child(2) {
    animation-delay: 0.4s;
}

.teguh-otc-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.teguh-otc-category h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.teguh-otc-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.teguh-otc-product {
    text-align: center;
    transition: transform 0.3s ease;
}

.teguh-otc-product:hover {
    transform: scale(1.05);
}

.teguh-product-image {
    margin-bottom: 1rem;
}

.teguh-product-image img {
    width: 3rem;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.teguh-otc-product:hover .teguh-product-image img {
    transform: scale(1.05);
}

.teguh-otc-product h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.teguh-otc-product p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.teguh-supplements {
    padding: 8rem 0;
    background: var(--background-primary);
}

.teguh-supplements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.teguh-supplement-card {
    background: var(--background-primary);
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
}
.teguh-supplement-card .info{
padding: 1rem;
}
.teguh-supplement-card:nth-child(1) {
    animation-delay: 0.2s;
}

.teguh-supplement-card:nth-child(2) {
    animation-delay: 0.4s;
}

.teguh-supplement-card:nth-child(3) {
    animation-delay: 0.6s;
}

.teguh-supplement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.teguh-supplement-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.teguh-supplement-card:hover::before {
    transform: scaleX(1);
}

.teguh-supplement-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.teguh-supplement-card:hover .teguh-supplement-icon {
    transform: scale(1.1);
}

.teguh-supplement-icon img {
    width: 100%;
}

.teguh-supplement-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.teguh-supplement-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.teguh-supplement-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.teguh-supplement-features span {
    background: var(--accent-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.teguh-medical-devices {
    padding: 8rem 0;
    background: var(--background-secondary);
}

.teguh-devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.teguh-device-card {
    background: var(--background-primary);
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: scaleIn 0.8s ease-out;
}

.teguh-device-card:nth-child(1) {
    animation-delay: 0.2s;
}

.teguh-device-card:nth-child(2) {
    animation-delay: 0.4s;
}

.teguh-device-card:nth-child(3) {
    animation-delay: 0.6s;
}

.teguh-device-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.teguh-device-image {
    position: relative;
    overflow: hidden;
}

.teguh-device-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.teguh-device-card:hover .teguh-device-image img {
    transform: scale(1.05);
}

.teguh-device-content {
    padding: 2rem;
}

.teguh-device-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.teguh-device-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.teguh-device-features {
    list-style: none;
}

.teguh-device-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.teguh-device-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.teguh-consultation {
    padding: 8rem 0;
    background: var(--background-primary);
}

.teguh-consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.teguh-consultation-card {
    background: var(--background-primary);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
}

.teguh-consultation-card:nth-child(1) {
    animation-delay: 0.2s;
}

.teguh-consultation-card:nth-child(2) {
    animation-delay: 0.4s;
}

.teguh-consultation-card:nth-child(3) {
    animation-delay: 0.6s;
}

.teguh-consultation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.teguh-consultation-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.teguh-consultation-card:hover::before {
    transform: scaleX(1);
}

.teguh-consultation-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.teguh-consultation-card:hover .teguh-consultation-icon {
    transform: scale(1.1);
}

.teguh-consultation-icon img {
    width: 80px;
    height: 80px;
}

.teguh-consultation-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.teguh-consultation-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.teguh-consultation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.teguh-consultation-features span {
    background: var(--accent-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.teguh-cta {
    padding: 8rem 0;
    background: var(--background-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.teguh-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.teguh-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.teguh-cta-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.teguh-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.teguh-btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-medium);
}

.teguh-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.teguh-cta-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.teguh-cta-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    top: 0;
    right: 0;
    opacity: 0.3;
    animation: rotate 30s linear infinite;
}

.teguh-cta-line {
    position: absolute;
    width: 120px;
    height: 2px;
    background: var(--accent-gradient);
    bottom: 50px;
    left: 0;
    transform: rotate(-45deg);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.teguh-footer {
    background: var(--background-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.teguh-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.teguh-footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.teguh-footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.teguh-footer-section ul {
    list-style: none;
}

.teguh-footer-section ul li {
    margin-bottom: 0.75rem;
}

.teguh-footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.teguh-footer-section ul li a:hover {
    color: var(--accent-color);
}

.teguh-footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.teguh-footer-bottom p {
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .teguh-nav-center,
    .teguh-nav-right {
        display: none;
    }
    
    .teguh-nav-toggle {
        display: flex;
    }
    
    .teguh-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 100px 0 2rem;
    }
    
    .teguh-hero-title {
        font-size: 2.5rem;
    }
    
    .teguh-prescription-grid {
        grid-template-columns: 1fr;
    }
    
    .teguh-otc-grid {
        grid-template-columns: 1fr;
    }
    
    .teguh-supplements-grid {
        grid-template-columns: 1fr;
    }
    
    .teguh-devices-grid {
        grid-template-columns: 1fr;
    }
    
    .teguh-consultation-grid {
        grid-template-columns: 1fr;
    }
    
    .teguh-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .teguh-hero-title {
        font-size: 2rem;
    }
    
    .teguh-section-header h2 {
        font-size: 2rem;
    }
    
    .teguh-cta-content h2 {
        font-size: 2rem;
    }
    
    .teguh-prescription-card,
    .teguh-supplement-card,
    .teguh-consultation-card {
        padding: 2rem;
    }
    
    .teguh-otc-category {
        padding: 2rem;
    }
    
    .teguh-device-content {
        padding: 1.5rem;
    }
} 

/* Cookie Consent Styles */
.teguh-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    color: white;
    z-index: 99999;
    padding: 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.teguh-cookie-consent.teguh-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.teguh-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.teguh-cookie-header {
    margin-bottom: 2rem;
}

.teguh-cookie-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.teguh-cookie-header p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0;
}

.teguh-cookie-header a {
    color: var(--accent-color);
    text-decoration: none;
}

.teguh-cookie-header a:hover {
    text-decoration: underline;
}

.teguh-cookie-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.teguh-cookie-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.teguh-cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.teguh-cookie-option input[type="checkbox"] {
    display: none;
}

.teguh-cookie-option .teguh-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.teguh-cookie-option input[type="checkbox"]:checked + .teguh-checkbox-custom {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.teguh-cookie-option input[type="checkbox"]:checked + .teguh-checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.teguh-cookie-option input[type="checkbox"]:disabled + .teguh-checkbox-custom {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

.teguh-cookie-option input[type="checkbox"]:disabled + .teguh-checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.teguh-cookie-option p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.teguh-cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.teguh-cookie-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    z-index: 99999;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.teguh-cookie-message.teguh-fade-out {
    transform: translateX(100%);
}

@media (max-width: 768px) {
    .teguh-cookie-consent {
        padding: 1.5rem;
    }
    
    .teguh-cookie-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .teguh-cookie-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .teguh-cookie-actions .teguh-btn {
        width: 100%;
        justify-content: center;
    }
} 